[Q]Porting MIUI-style settings - Android Themes

Trying to port MIUI-style settings to cyanogenmod.
I'm decompile the framework-res.apk from both roms using apk-manager 4.9.
Then I copied these files from miui to cyanogen:
Code:
[color]
preference_category_text.xml
preference_primary_text.xml
preference_secondary_text.xml
[drawable]
arrow_right.xml
[drawable-hdpi]
ic_arrow_right.png
ic_arrow_right_disable.png
ic_preference_first_normal.9.png
ic_preference_first_pressed.9.png
ic_preference_last_normal.9.png
ic_preference_last_pressed.9.png
ic_preference_normal.9.png
ic_preference_one_normal.9.png
ic_preference_one_pressed.9.png
ic_preference_pressed.9.png
ic_preference_single_normal.9.png
ic_preference_single_pressed.9.png
ic_preference_title.9.png
ic_preference_top_normal.9.png
ic_preference_top_pressed.9.png
[layout]
preference.xml
preference_category.xml
preference_child.xml
preference_dialog.xml
preference_dialog_edittext.xml
preference_information.xml
preference_list_content.xml
preference_widget_checkbox.xml
preference_widget_next.xml
preference_widget_radiobutton.xml
preferences.xml
Then I added to values\attrs.xml
Code:
<attr name="drawSelectorOnNothing" format="boolean" />
And to values\public.xml next lines:
Code:
<public type="color" name="preference_primary_text" id="0x01060039" />
<public type="color" name="preference_secondary_text" id="0x0106003a" />
<public type="color" name="preference_category_text" id="0x0106003b" />
<public type="drawable" name="arrow_right" id="0x010803be" />
<public type="drawable" name="ic_preference_title" id="0x010803bf" />
<public type="drawable" name="ic_arrow_right" id="0x010803c0" />
<public type="drawable" name="ic_arrow_right_disable" id="0x010803c1" />
<public type="attr" name="drawSelectorOnNothing" id="0x010102d0" />
Then I compile apk, check "for system apk", then enter "y" and deleted keep\resources.arsc
After that I pushed apk to phone. But it's FC when I open settings.
LogCat log:
Code:
01-16 18:57:23.085: WARN/WindowManager(1670): HistoryRecord{464ca5a8 com.android.settings/.Settings} failed creating starting window
01-16 18:57:23.085: WARN/WindowManager(1670): android.content.res.Resources$NotFoundException: File %2$s %3$s ?????? %8$s ??? from xml type layout resource ID #0x109005c
01-16 18:57:23.085: WARN/WindowManager(1670): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1984)
01-16 18:57:23.085: WARN/WindowManager(1670): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1939)
01-16 18:57:23.085: WARN/WindowManager(1670): at android.content.res.Resources.getLayout(Resources.java:773)
01-16 18:57:23.085: WARN/WindowManager(1670): at android.view.LayoutInflater.inflate(LayoutInflater.java:318)
01-16 18:57:23.085: WARN/WindowManager(1670): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
01-16 18:57:23.085: WARN/WindowManager(1670): at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:2165)
01-16 18:57:23.085: WARN/WindowManager(1670): at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:2220)
01-16 18:57:23.085: WARN/WindowManager(1670): at com.android.internal.policy.impl.PhoneWindow.getDecorView(PhoneWindow.java:1407)
01-16 18:57:23.085: WARN/WindowManager(1670): at com.android.internal.policy.impl.PhoneWindowManager.addStartingWindow(PhoneWindowManager.java:1014)
01-16 18:57:23.085: WARN/WindowManager(1670): at com.android.server.WindowManagerService$H.handleMessage(WindowManagerService.java:9051)
01-16 18:57:23.085: WARN/WindowManager(1670): at android.os.Handler.dispatchMessage(Handler.java:99)
01-16 18:57:23.085: WARN/WindowManager(1670): at android.os.Looper.loop(Looper.java:123)
01-16 18:57:23.085: WARN/WindowManager(1670): at com.android.server.WindowManagerService$WMThread.run(WindowManagerService.java:581)
01-16 18:57:23.085: WARN/WindowManager(1670): Caused by: java.io.FileNotFoundException: %2$s %3$s ?????? %8$s ???
01-16 18:57:23.085: WARN/WindowManager(1670): at android.content.res.AssetManager.openXmlAssetNative(Native Method)
01-16 18:57:23.085: WARN/WindowManager(1670): at android.content.res.AssetManager.openXmlBlockAsset(AssetManager.java:485)
01-16 18:57:23.085: WARN/WindowManager(1670): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1966)
01-16 18:57:23.085: WARN/WindowManager(1670): ... 12 more
01-16 18:57:23.132: DEBUG/AndroidRuntime(1932): Shutting down VM
01-16 18:57:23.132: WARN/dalvikvm(1932): threadid=1: thread exiting with uncaught exception (group=0x400207d0)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): FATAL EXCEPTION: main
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.android.settings/com.android.settings.Settings}: android.content.res.Resources$NotFoundException: File %2$s %3$s ?????? %8$s ??? from xml type layout resource ID #0x109005c
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.os.Handler.dispatchMessage(Handler.java:99)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.os.Looper.loop(Looper.java:123)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.app.ActivityThread.main(ActivityThread.java:4627)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at java.lang.reflect.Method.invokeNative(Native Method)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at java.lang.reflect.Method.invoke(Method.java:521)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at dalvik.system.NativeStart.main(Native Method)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): Caused by: android.content.res.Resources$NotFoundException: File %2$s %3$s ?????? %8$s ??? from xml type layout resource ID #0x109005c
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1984)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1939)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.content.res.Resources.getLayout(Resources.java:773)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.view.LayoutInflater.inflate(LayoutInflater.java:318)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:2165)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:2220)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:194)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.app.Activity.setContentView(Activity.java:1647)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.preference.PreferenceActivity.onCreate(PreferenceActivity.java:107)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at com.android.settings.Settings.onCreate(Settings.java:43)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): ... 11 more
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): Caused by: java.io.FileNotFoundException: %2$s %3$s ?????? %8$s ???
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.content.res.AssetManager.openXmlAssetNative(Native Method)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.content.res.AssetManager.openXmlBlockAsset(AssetManager.java:485)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): at android.content.res.Resources.loadXmlResourceParser(Resources.java:1966)
01-16 18:57:23.155: ERROR/AndroidRuntime(1932): ... 23 more
01-16 18:57:23.202: DEBUG/dalvikvm(1932): GC_FOR_MALLOC freed 3297 objects / 248920 bytes in 42ms
01-16 18:57:23.312: DEBUG/dalvikvm(1670): GC_FOR_MALLOC freed 13489 objects / 994304 bytes in 93ms
01-16 18:57:23.312: WARN/ActivityManager(1670): Force finishing activity com.android.settings/.Settings
01-16 18:57:23.820: WARN/ActivityManager(1670): Activity pause timeout for HistoryRecord{464ca5a8 com.android.settings/.Settings}
01-16 18:57:33.893: WARN/ActivityManager(1670): Activity destroy timeout for HistoryRecord{464ca5a8 com.android.settings/.Settings}
The keyline is
Code:
01-16 18:57:23.085: WARN/WindowManager(1670): android.content.res.Resources$NotFoundException: File %2$s %3$s ?????? %8$s ??? from xml type layout resource ID #0x109005c
I had only next in public.xml
Code:
<public type="layout" name="screen_progress" id="0x0109005c" />
But I didn't touched it and anything else. I'm only added a few lines.
I think that it's something wrong while apk compiling, but what?
//sorry for my eng

Did you zipalign and resign?

I'm currently working on this too, my idea is to cherrypick the good stuff that miui offers and make a open source clone so people can merge it with their favorite roms, Cyanogen, AOSP etc etc.
Maby we could teamup to achive this, PM if you want to start a humongous insane project.

What kind of settings would this fulfill? Would the Messenger style set-up be included too?

Related

Modifying Contacts.apk

Alright, I'm trying to make a JPY ROM. Normally I'd put the Captivate Contacts.apk in the ROM instead so it doesn't say "Video Chat", etc. Of course the Stock Widget too.
However, on JPY it force closes.
So, I decided to try and edit the i9000 Contacts.apk directly.
I found these four files:
contact_call_row.xml
contact_call_row_land.xml
contact_detail_dialog_layout.xml (there's two of them)
And removed the line with "video_call" in it.
Putting the .apk on my phone, the Contacts app opens. When you click on a contact, it force closes.
Here's the logcat:
Code:
--------- beginning of /dev/log/main
W/PowerManagerService( 2745): Timer 0x3->0x3|0x3
D/dalvikvm( 3325): GC_EXPLICIT freed 3104 objects / 184344 bytes in 103ms
--------- beginning of /dev/log/system
V/InputDevice( 2745): ID[0]=0(0) Dn(0=>1)
V/WindowManager( 2745): Dsptch > Window{48e39338 com.android.contacts/com.sec.android.app.contacts.PhoneBookTopMenuActivity paused=false}
V/WindowManager( 2745): Dsptch > Window{48e39338 com.android.contacts/com.sec.android.app.contacts.PhoneBookTopMenuActivity paused=false}
V/InputDevice( 2745): ID[0]=0(0) Up(1=>0)
V/WindowManager( 2745): Dsptch > Window{48e39338 com.android.contacts/com.sec.android.app.contacts.PhoneBookTopMenuActivity paused=false}
V/InputDevice( 2745): ID[0]=0(0) Dn(0=>1)
D/TwIndexScrollView( 4464): dispatchDraw(Canvas canvas) is now being called!!
D/TwIndexScrollView( 4464): dispatchDraw(Canvas canvas) is now being called!!
E/AudioTrack( 2745): getAudioMode[0]
I/ContactsListActivity( 4464): uri is content://com.android.contacts/contacts/lookup/0i1/1
I/ActivityManager( 2745): Starting activity: Intent { act=android.intent.action.VIEW dat=content://com.android.contacts/contacts/lookup/0i1/1 cmp=com.android.contacts/com.sec.android.app.contacts.PhoneBookDetailTabActivity }
D/ContactsListActivity( 4464): onSaveInstanceState
D/ContactsListActivity( 4464): onPause------------------------------------------
D/TwIndexScrollView( 4464): dispatchDraw(Canvas canvas) is now being called!!
D/AudioHardwareALSA( 2613):
D/AudioHardwareALSA( 2613): ALSA OPEN mode 0,device 2
I/AudioHardwareALSA( 2613): Try to open ALSA PLAYBACK device AndroidPlayback_Speaker_normal
I/AudioHardwareALSA( 2613): Initialized ALSA PLAYBACK device AndroidPlayback_Speaker_normal
D/AudioHardwareALSA( 2613): Set PLAYBACK PCM format to S16_LE (Signed 16 bit Little Endian)
D/AudioHardwareALSA( 2613): Using 2 channels for PLAYBACK.
D/AudioHardwareALSA( 2613): Set PLAYBACK sample rate to 44100 HZ
D/AudioHardwareALSA( 2613): Buffer size: 2048
D/AudioHardwareALSA( 2613): Latency: 46439
V/InputDevice( 2745): ID[0]=0(0) Up(1=>0)
D/PhoneBookDetailTabActivity( 4464): onResume, mJustCreated : true
D/TwIndexScrollView( 4464): dispatchDraw(Canvas canvas) is now being called!!
I/ActivityManager( 2745): Displayed activity com.android.contacts/com.sec.android.app.contacts.PhoneBookDetailTabActivity: 282 ms (total 282 ms)
D/ContactsListActivity( 4464): onStop--------------------=------------------------
D/AndroidRuntime( 4464): Shutting down VM
W/dalvikvm( 4464): threadid=1: thread exiting with uncaught exception (group=0x4001d7d0)
E/AndroidRuntime( 4464): FATAL EXCEPTION: main
E/AndroidRuntime( 4464): java.lang.NullPointerException
E/AndroidRuntime( 4464): at com.android.contacts.ViewContactActivity$ViewAdapter.bindView(ViewContactActivity.java:3690)
E/AndroidRuntime( 4464): at com.android.contacts.ViewContactActivity$ViewAdapter.getView(ViewContactActivity.java:3327)
E/AndroidRuntime( 4464): at android.widget.AbsListView.obtainView(AbsListView.java:1431)
E/AndroidRuntime( 4464): at android.widget.ListView.makeAndAddView(ListView.java:1802)
E/AndroidRuntime( 4464): at android.widget.ListView.fillDown(ListView.java:727)
E/AndroidRuntime( 4464): at android.widget.ListView.fillFromTop(ListView.java:784)
E/AndroidRuntime( 4464): at android.widget.ListView.layoutChildren(ListView.java:1655)
E/AndroidRuntime( 4464): at android.widget.AbsListView.onLayout(AbsListView.java:1263)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1249)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1125)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.onLayout(LinearLayout.java:1042)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.FrameLayout.onLayout(FrameLayout.java:334)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.FrameLayout.onLayout(FrameLayout.java:334)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.FrameLayout.onLayout(FrameLayout.java:334)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1249)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1125)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.onLayout(LinearLayout.java:1042)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.FrameLayout.onLayout(FrameLayout.java:334)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1249)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1125)
E/AndroidRuntime( 4464): at android.widget.LinearLayout.onLayout(LinearLayout.java:1042)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.FrameLayout.onLayout(FrameLayout.java:334)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.widget.FrameLayout.onLayout(FrameLayout.java:334)
E/AndroidRuntime( 4464): at android.view.View.layout(View.java:7088)
E/AndroidRuntime( 4464): at android.view.ViewRoot.performTraversals(ViewRoot.java:1056)
E/AndroidRuntime( 4464): at android.view.ViewRoot.handleMessage(ViewRoot.java:1752)
E/AndroidRuntime( 4464): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 4464): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 4464): at android.app.ActivityThread.main(ActivityThread.java:4627)
E/AndroidRuntime( 4464): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 4464): at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime( 4464): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
E/AndroidRuntime( 4464): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
E/AndroidRuntime( 4464): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager( 2745): Force finishing activity com.android.contacts/com.sec.android.app.contacts.PhoneBookDetailTabActivity
I/ ( 2745): dumpmesg > "/data/log/dumpstate_app_error.log"
W/ActivityManager( 2745): Activity pause timeout for HistoryRecord{48d51008 com.android.contacts/com.sec.android.app.contacts.PhoneBookDetailTabActivity}
V/WindowManager( 2745): Dsptch > Window{48cc09a8 Sorry! paused=false}
V/InputDevice( 2745): ID[0]=0(0) Dn(0=>1)
V/InputDevice( 2745): ID[0]=0(0) Up(1=>0)
V/WindowManager( 2745): Dsptch > Window{48cc09a8 Sorry! paused=false}
V/InputDevice( 2745): ID[0]=0(0) Dn(0=>1)
V/WindowManager( 2745): Dsptch > Window{48cc09a8 Sorry! paused=false}
V/WindowManager( 2745): Dsptch > Window{48cc09a8 Sorry! paused=false}
V/InputDevice( 2745): ID[0]=0(0) Up(1=>0)
E/AudioTrack( 2745): getAudioMode[0]
I/Process ( 4464): Sending signal. PID: 4464 SIG: 9
I/ActivityManager( 2745): Process android.process.acore (pid 4464) has died.
I/WindowManager( 2745): WIN DEATH: Window{48e39338 com.android.contacts/com.sec.android.app.contacts.PhoneBookTopMenuActivity paused=false}
I/WindowManager( 2745): WIN DEATH: Window{48fb9bd0 com.android.contacts/com.sec.android.app.contacts.PhoneBookDetailTabActivity paused=false}
I/UsageStats( 2745): Unexpected resume of com.android.launcher while already resumed in com.android.contacts
D/Launcher( 2995): onResume+
D/Launcher.DragController( 2995): +endDrag: false
D/Launcher.DragController( 2995): mDragging == false
D/Launcher.DragController( 2995): -endDrag: false
D/Launcher( 2995): onResume-
V/RenderScript_jni( 2995): surfaceCreated
D/Launcher.AllApps3D( 2995): +super.surfaceChanged
V/RenderScript_jni( 2995): surfaceChanged
D/Launcher.AllApps3D( 2995): -super.surfaceChanged
W/InputManagerService( 2745): Got RemoteException sending setActive(false) notification to pid 4464 uid 10002
W/Resources( 2745): Converting to boolean: TypedValue{t=0x3/d=0x692e "res/anim/accelerate_decelerate_interpolator.xml" a=1 r=0x10a0004}
Any help would be appreciated.
I removed the offending lines based on the logcat (I think).
It stopped the force close, but it looks like this:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
You have a null pointer error. It's most probably a findViewById() in the code that does not find now the corresponding xml entry.
One way to solve it would be to make the entry very small and transparent, but IDK how it will mess up the rest of the layout.
Another option is to try an aosp contact. I'm assuming the source for the captivate contacts for eclair is not available. Right?
aleadam said:
One way to solve it would be to make the entry very small and transparent, but IDK how it will mess up the rest of the layout.
Click to expand...
Click to collapse
Worked better than before.
Now I need to figure out what governs the icons when you click on the Contact picture. The thing that lets you jump to MMS, Dialer, Gmail, Facebook, etc.
..
This is what I meant, that's what's left to erase:
Can you post the apk you've modded?
Sent from my SAMSUNG-SGH-I897
In due time.
MikeyMike01 said:
In due time.
Click to expand...
Click to collapse
Doesn't need to be working. We could test something and avoid duplicate work.
There are three different quick_contact_videocall.png images. In drawable-hdpi, drawable-hdpi-finger and drawable-land-hdpi-finger. I would reduce to 1x1 each and see the effect of it.
Sorry, I should have clarified. I'm not looking for the finished apk. I just wanted to lend a hand and tear it apart to see if I can help.
Sent from my SAMSUNG-SGH-I897
I am sure you already know, but the Phone.apk and DialerTabActivity.apk from the telus rom work beautifully with JPY roms.
I'm not at my computer.
What I changed was the four .xml files in the original post. Only, instead of removing the line I changed the size of it to be practically nothing.
moosefist said:
I am sure you already know, but the Phone.apk and DialerTabActivity.apk from the telus rom work beautifully with JPY roms.
Click to expand...
Click to collapse
Neither of those is the problem. Contacts.apk is what won't play nice.
MikeyMike01 said:
Neither of those is the problem. Contacts.apk is what won't play nice.
Click to expand...
Click to collapse
Yeah, i figured i would mention it.
Just a thought, rather than modifying this file why don't we look into why the 2.2 apk's with out video calling are force closing on JPY to begin with?
Do we have a log of what it happening in that situation? it may be easier...
aleadam said:
There are three different quick_contact_videocall.png images. In drawable-hdpi, drawable-hdpi-finger and drawable-land-hdpi-finger. I would reduce to 1x1 each and see the effect of it.
Click to expand...
Click to collapse
Did that:
Inside QuickContactWindow.smali there is the following:
Code:
new-array v0, v0, [Ljava/lang/String;
const-string v1, "vnd.android.cursor.item/phone_v2"
aput-object v1, v0, v2
const-string v1, "vnd.android.cursor.item/vcall-address"
aput-object v1, v0, v3
const-string v1, "vnd.android.cursor.item/sms-address"
aput-object v1, v0, v4
const-string v1, "vnd.android.cursor.item/email_v2"
aput-object v1, v0, v5
const-string v1, "vnd.android.cursor.item/contact"
I imagine this is a good place to start.
MikeyMike01 said:
Did that:
Click to expand...
Click to collapse
hmm, maybe instead of trying to completely removing the box, change the video call to Email perhaps?? just my .02
MikeyMike01 said:
This is what I meant, that's what's left to erase:
Click to expand...
Click to collapse
OK, I'm rethinking this: the buttons in that bar are not fixed and will depend on the options that are possible in your phone and with that contact, i.e., if you have gtalk you'll have a button for chat, if the contact has an address you will have a maps icon.
That means that the list of icons are created at runtime based on some info. We need to figure out what is reading it and where the info is stored. Then, we should be able to remove the item very cleanly. I'm guessing is a list of intents somewhere. I'll dig a little bit tonight, but I don't know how much I will be able to understand those .smali files...
aleadam said:
OK, I'm rethinking this: the buttons in that bar are not fixed and will depend on the options that are possible in your phone and with that contact, i.e., if you have gtalk you'll have a button for chat, if the contact has an address you will have a maps icon.
That means that the list of icons are created at runtime based on some info. We need to figure out what is reading it and where the info is stored. Then, we should be able to remove the item very cleanly. I'm guessing is a list of intents somewhere. I'll dig a little bit tonight, but I don't know how much I will be able to understand those .smali files...
Click to expand...
Click to collapse
I wish there was a way to search through the .smali files the way Windows can search through .xml files or .txt files.
USHERROB said:
hmm, maybe instead of trying to completely removing the box, change the video call to Email perhaps?? just my .02
Click to expand...
Click to collapse
Email is already there, I just didn't have an account set up so it wasn't shown.

[REQ] LG Optimus Black weather widget

Is there someone that could dump the weather widget found in the new lg optimus black so u can install it as an .apk file ?
here is how it looks.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
tl;dr: it doesn't work
i'm uploading it here:
ge.tt/3rQvmBD
ge.tt/3rQvmBD/WeatherWidget-signed.apk (not working)
edit: deodexed and signed version: ge.tt/3rQvmBD/WeatherWidget-signed.apk (not working)
i tried to install it on my htc hd2 (TyphooN CyanogenMod 7 Nightly v3.2.6 rom) but it fail to install
with adb:
Code:
C:\android-sdk-windows\platform-tools>adb install WeatherWidget.apk
2153 KB/s (16332962 bytes in 7.407s)
pkg: /data/local/tmp/WeatherWidget.apk
Failure [INSTALL_FAILED_DEXOPT]
C:\android-sdk-windows\platform-tools>
adb logcat:
Code:
D/AndroidRuntime(13289):
D/AndroidRuntime(13289): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
I/AndroidRuntime(13289): Heap size: -Xmx32m
D/AndroidRuntime(13289): CheckJNI is OFF
D/dalvikvm(13289): creating instr width table
D/AndroidRuntime(13289): Calling main entry com.android.commands.pm.Pm
D/dalvikvm(12973): GC_EXPLICIT freed 10K, 52% free 2687K/5511K, external 0K/0K, paused 49ms
W/ActivityManager( 3086): No content provider found for:
W/ActivityManager( 3086): No content provider found for:
D/PackageParser( 3086): Scanning package: /data/app/vmdl-842848858.tmp
D/dalvikvm( 3086): GC_CONCURRENT freed 1975K, 35% free 8628K/13127K, external 4085K/4505K, paused 8ms+12ms
D/dalvikvm( 3086): GC_FOR_MALLOC freed 1053K, 36% free 8528K/13191K, external 4085K/4505K, paused 197ms
D/dalvikvm( 3086): GC_FOR_MALLOC freed 1027K, 36% free 8531K/13191K, external 4085K/4505K, paused 176ms
D/dalvikvm( 3086): GC_FOR_MALLOC freed 1025K, 36% free 8538K/13191K, external 4085K/4505K, paused 182ms
D/dalvikvm( 3086): GC_FOR_MALLOC freed 1025K, 36% free 8546K/13191K, external 4085K/4505K, paused 186ms
D/PackageManager( 3086): Scanning package com.lge.sizechangable.weather
E/PackageManager( 3086): Package com.lge.sizechangable.weather has mismatched uid: 10036 on disk, 10177 in settings
I/PackageManager( 3086): Linking native library dir for /data/app/com.lge.sizechangable.weather-1.apk
D/installd( 69): DexInv: --- BEGIN '/data/app/com.lge.sizechangable.weather-1.apk' ---
W/dalvikvm(13300): DexOptZ: zip archive '/data/app/com.lge.sizechangable.weather-1.apk' does not include classes.dex
W/installd( 69): DexInv: --- END '/data/app/com.lge.sizechangable.weather-1.apk' --- status=0xff00, process failed
E/installd( 69): dexopt failed on '/data/dalvik-cache/[email protected]@[email protected]' res = 65280
W/PackageManager( 3086): Package couldn't be installed in /data/app/com.lge.sizechangable.weather-1.apk
D/dalvikvm( 3086): GC_EXPLICIT freed 260K, 36% free 8518K/13191K, external 4085K/4505K, paused 180ms
D/AndroidRuntime(13289): Shutting down VM
I/AndroidRuntime(13289): NOTE: attach of thread 'Binder Thread #3' failed
D/dalvikvm(13289): GC_CONCURRENT freed 213K, 71% free 303K/1024K, external 0K/0K, paused 1ms+0ms
D/jdwp (13289): adbd disconnected
Sounds like it was pulled directly from the dump without being deodexed.
Sent from my SGH-T959 using XDA Premium App
onslaught86 said:
Sounds like it was pulled directly from the dump without being deodexed.
Click to expand...
Click to collapse
yes, i simply took this file from my wife's lg optimus black:
/system/app/WeatherWidget.apk
now i took the .odex, used Deodexer_2_3, it added classes.dex into the apk
but it doesn't work
Code:
C:\android-sdk-windows\platform-tools>adb install WeatherWidget.apk
adb server is out of date. killing...
* daemon started successfully *
1911 KB/s (16032027 bytes in 8.192s)
pkg: /data/local/tmp/WeatherWidget.apk
Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES]
C:\android-sdk-windows\platform-tools>
Code:
D/AndroidRuntime(16199):
D/AndroidRuntime(16199): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
I/AndroidRuntime(16199): Heap size: -Xmx32m
D/AndroidRuntime(16199): CheckJNI is OFF
D/dalvikvm(16199): creating instr width table
D/AndroidRuntime(16199): Calling main entry com.android.commands.pm.Pm
D/dalvikvm(16104): GC_EXPLICIT freed 40K, 52% free 2687K/5511K, external 0K/0K, paused 50ms
W/ActivityManager( 3086): No content provider found for:
I/OnAlarmReceiver( 9819): onReceive...
V/NetMeterService----------( 9819): NetMeterService+ int p is equals=0
D/NetMeterService( 9819): ====> Updating database <====
D/NetMeterService( 9819): Service onStart ->
D/NetMeterService( 9819): rmnet0 done in 27 ms.
D/NetMeterService( 9819): eth0 done in 40 ms.
D/NetMeterService( 9819): Alert: 2 ms
W/ActivityManager( 3086): No content provider found for:
D/PackageParser( 3086): Scanning package: /data/app/vmdl1381269041.tmp
D/szipinf ( 3086): Initializing inflate state
E/PackageParser( 3086): Package com.lge.sizechangable.weather has no certificates at entry classes.dex; ignoring!
D/dalvikvm( 3086): GC_EXPLICIT freed 1061K, 37% free 8375K/13191K, external 4091K/4402K, paused 306ms
D/AndroidRuntime(16199): Shutting down VM
I/AndroidRuntime(16199): NOTE: attach of thread 'Binder Thread #3' failed
D/dalvikvm(16199): GC_CONCURRENT freed 213K, 71% free 303K/1024K, external 0K/0K, paused 1ms+1ms
D/jdwp (16199): adbd disconnected
so...
i deodexed the apk with Deodexer_2_3
i signed the result with SignApk and uploaded it to ge.tt
i installed WeatherWidget-signed.apk, it worked
but the widget fail to run
Code:
D/szipinf ( 4257): Initializing inflate state
D/dalvikvm( 1032): GC_EXPLICIT freed 8K, 50% free 4201K/8327K, external 10759K/12807K, paused 119ms
D/szipinf ( 1032): Initializing inflate state
I/ActivityThread( 4257): Pub com.lge.weather.helper.weathercontentprovider: com.lge.sizechangable.weather.helper.WeatherContentProvi
der
I/Database( 4257): sqlite returned: error code = 14, msg = cannot open file at line 27205 of [42537b6056]
E/Database( 4257): sqlite3_open_v2("/data/data/com.lge.sizechangable.weather/databases/WeatherWidgetDB.db", &handle, 6, NULL) failed
D/AndroidRuntime( 4257): Shutting down VM
W/dalvikvm( 4257): threadid=1: thread exiting with uncaught exception (group=0x40015560)
E/AndroidRuntime( 4257): FATAL EXCEPTION: main
E/AndroidRuntime( 4257): java.lang.RuntimeException: Unable to get provider com.lge.sizechangable.weather.helper.WeatherContentProvi
der: android.database.sqlite.SQLiteException: unable to open database file
E/AndroidRuntime( 4257): at android.app.ActivityThread.installProvider(ActivityThread.java:3709)
E/AndroidRuntime( 4257): at android.app.ActivityThread.installContentProviders(ActivityThread.java:3461)
E/AndroidRuntime( 4257): at android.app.ActivityThread.handleBindApplication(ActivityThread.java:3417)
E/AndroidRuntime( 4257): at android.app.ActivityThread.access$2200(ActivityThread.java:123)
E/AndroidRuntime( 4257): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:977)
E/AndroidRuntime( 4257): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 4257): at android.os.Looper.loop(Looper.java:130)
E/AndroidRuntime( 4257): at android.app.ActivityThread.main(ActivityThread.java:3835)
E/AndroidRuntime( 4257): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 4257): at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime( 4257): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:841)
E/AndroidRuntime( 4257): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:599)
E/AndroidRuntime( 4257): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 4257): Caused by: android.database.sqlite.SQLiteException: unable to open database file
E/AndroidRuntime( 4257): at android.database.sqlite.SQLiteDatabase.dbopen(Native Method)
E/AndroidRuntime( 4257): at android.database.sqlite.SQLiteDatabase.<init>(SQLiteDatabase.java:1849)
E/AndroidRuntime( 4257): at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:820)
E/AndroidRuntime( 4257): at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:854)
E/AndroidRuntime( 4257): at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:847)
E/AndroidRuntime( 4257): at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:570)
E/AndroidRuntime( 4257): at android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:203)
E/AndroidRuntime( 4257): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:118)
E/AndroidRuntime( 4257): at com.lge.sizechangable.weather.remoteservice.DataHelper.<init>(DataHelper.java:126)
E/AndroidRuntime( 4257): at com.lge.sizechangable.weather.helper.WeatherContentProvider.onCreate(WeatherContentProvider.java:
50)
E/AndroidRuntime( 4257): at android.content.ContentProvider.attachInfo(ContentProvider.java:798)
E/AndroidRuntime( 4257): at android.app.ActivityThread.installProvider(ActivityThread.java:3706)
E/AndroidRuntime( 4257): ... 12 more
i created /data/data/com.lge.sizechangable.weather/databases/ folder, so the widget created the databases into, but still not working
Code:
E/ApplicationContext( 1662): Couldn't create directory for SharedPreferences file /data/data/com.lge.sizechangable.weather/shared_prefs/Weather.xml
created /data/data/com.lge.sizechangable.weather/shared_prefs/, widget created Weather.xml and other xml files, but still not working, FC when trying to specify a weather location:
Code:
E/ActivityThread( 1771): Failed to inflate
E/ActivityThread( 1771): android.view.InflateException: Binary XML file line #279: Error inflating class <unknown>
E/ActivityThread( 1771): at android.view.LayoutInflater.createView(LayoutInflater.java:518)
E/ActivityThread( 1771): at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56)
E/ActivityThread( 1771): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:568)
E/ActivityThread( 1771): at android.view.LayoutInflater.rInflate(LayoutInflater.java:623)
E/ActivityThread( 1771): at android.view.LayoutInflater.rInflate(LayoutInflater.java:626)
E/ActivityThread( 1771): at android.view.LayoutInflater.rInflate(LayoutInflater.java:626)
E/ActivityThread( 1771): at android.view.LayoutInflater.inflate(LayoutInflater.java:408)
E/ActivityThread( 1771): at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
E/ActivityThread( 1771): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)
E/ActivityThread( 1771): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:212)
E/ActivityThread( 1771): at android.app.Activity.setContentView(Activity.java:1657)
E/ActivityThread( 1771): at com.lge.sizechangable.weather.activities.TodaysViewActivity.onCreate(TodaysViewActivity.java:242)
E/ActivityThread( 1771): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/ActivityThread( 1771): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1722)
E/ActivityThread( 1771): at android.app.ActivityThread.startActivityNow(ActivityThread.java:1598)
E/ActivityThread( 1771): at android.app.LocalActivityManager.moveToState(LocalActivityManager.java:127)
E/ActivityThread( 1771): at android.app.LocalActivityManager.startActivity(LocalActivityManager.java:339)
E/ActivityThread( 1771): at android.widget.TabHost$IntentContentStrategy.getContentView(TabHost.java:654)
E/ActivityThread( 1771): at android.widget.TabHost.setCurrentTab(TabHost.java:326)
E/ActivityThread( 1771): at android.widget.TabHost.addTab(TabHost.java:216)
E/ActivityThread( 1771): at com.lge.sizechangable.weather.activities.WeatherDetailsTabView.onCreate(WeatherDetailsTabView.java:173)
E/ActivityThread( 1771): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/ActivityThread( 1771): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1722)
E/ActivityThread( 1771): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1784)
E/ActivityThread( 1771): at android.app.ActivityThread.access$1500(ActivityThread.java:123)
E/ActivityThread( 1771): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:939)
E/ActivityThread( 1771): at android.os.Handler.dispatchMessage(Handler.java:99)
E/ActivityThread( 1771): at android.os.Looper.loop(Looper.java:130)
E/ActivityThread( 1771): at android.app.ActivityThread.main(ActivityThread.java:3835)
E/ActivityThread( 1771): at java.lang.reflect.Method.invokeNative(Native Method)
E/ActivityThread( 1771): at java.lang.reflect.Method.invoke(Method.java:507)
E/ActivityThread( 1771): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:841)
E/ActivityThread( 1771): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:599)
E/ActivityThread( 1771): at dalvik.system.NativeStart.main(Native Method)
E/ActivityThread( 1771): Caused by: java.lang.reflect.InvocationTargetException
E/ActivityThread( 1771): at java.lang.reflect.Constructor.constructNative(Native Method)
E/ActivityThread( 1771): at java.lang.reflect.Constructor.newInstance(Constructor.java:415)
E/ActivityThread( 1771): at android.view.LayoutInflater.createView(LayoutInflater.java:505)
E/ActivityThread( 1771): ... 33 more
E/ActivityThread( 1771): Caused by: java.lang.OutOfMemoryError: bitmap size exceeds VM budget
E/ActivityThread( 1771): at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method)
E/ActivityThread( 1771): at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:460)
E/ActivityThread( 1771): at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:336)
E/ActivityThread( 1771): at android.graphics.drawable.Drawable.createFromResourceStream(Drawable.java:697)
E/ActivityThread( 1771): at android.content.res.Resources.loadDrawable(Resources.java:1782)
E/ActivityThread( 1771): at android.content.res.TypedArray.getDrawable(TypedArray.java:601)
E/ActivityThread( 1771): at android.view.View.<init>(View.java:1967)
E/ActivityThread( 1771): at android.widget.ImageView.<init>(ImageView.java:112)
E/ActivityThread( 1771): at android.widget.ImageView.<init>(ImageView.java:108)
E/ActivityThread( 1771): ... 36 more
D/AndroidRuntime( 1771): Shutting down VM
W/dalvikvm( 1771): threadid=1: thread exiting with uncaught exception (group=0x40015560)
E/AndroidRuntime( 1771): FATAL EXCEPTION: main
E/AndroidRuntime( 1771): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.lge.sizechangable.weather/com.lge.sizechangable.weather.activities.WeatherDetailsTabView}: java.lang.Run
timeException: Unable to start activity ComponentInfo{com.lge.sizechangable.weather/com.lge.sizechangable.weather.activities.TodaysViewActivity}: android.view.InflateException: Binary XML file line #2
Yeah install works fine but adding widgets doesnt work, the first one crashes when u try to configure it
It's not exact (seems to only be missing the refresh and AccuWeather.com buttons), but search anyways for "3D Digital Weather Clock" in the Market.
I'd link to it, but I don't have enough posts to link yet.
http://market.android.com/details?id=factory.widgets.ThreeDDigitalWeatherClock
Link to the app on market
Sent from my Desire HD using XDA Premium App
nickhammond121 said:
http://market.android.com/details?id=factory.widgets.ThreeDDigitalWeatherClock
Link to the app on market
Sent from my Desire HD using XDA Premium App
Click to expand...
Click to collapse
it is not the same, i can get you the optimus 2x weather clock, but this one is better
nickhammond121 said:
http://market.android.com/details?id=factory.widgets.ThreeDDigitalWeatherClock
Link to the app on market
Sent from my Desire HD using XDA Premium App
Click to expand...
Click to collapse
looks like (snapshot*.jpg), but the optimus black's one is much better (2011-05-15 *.jpg)
Has anyone had any luck with getting this!?
doesn´t work, have you got function widget .apk ?
LG 2X widget
Sent from my Nexus One using XDA App
can really nobody extract the widget? lg optimus 2x worked,too, so why shouldn´t it work here??
Impact7 said:
can really nobody extract the widget? lg optimus 2x worked,too, so why shouldn´t it work here??
Click to expand...
Click to collapse
the app works, and the 1st widget works but the 2nd/3rd widget(big widgets) wont work on my 2X..
Can someone try the one from the lg revolution. Maybe that one will work. I really want this widget. Is there a daily briefing widget like there was on the optimus 2x.
Mjuksel said:
the app works, and the 1st widget works but the 2nd/3rd widget(big widgets) wont work on my 2X..
Click to expand...
Click to collapse
same here....
Please port these wodget
Inviato dal mio LG-P990 usando Tapatalk
home widget LG Optimus 2x weather work in optimus black
http://forum.xda-developers.com/showpost.php?p=11192505&postcount=140
thanos26 said:
home widget LG Optimus 2x weather work in optimus black
http://forum.xda-developers.com/showpost.php?p=11192505&postcount=140
Click to expand...
Click to collapse
can you signed lg home.apk? thanks

App - Zattoo @NativeSD in JB ?

Hi all,
is someone using the App Zattoo on NativeSD Rom (e.g. Xylos Pacman 1.2a)?
I'm very interesting if this is running, because I can't get it working at the moment (app crashes after starting "zattoo wurde leider beendet").
Zattoo was running before for me, but as I can remember it was when my Rom was starting from SD-Card, but the old way. Running WindowsMobile in Nand an running Android via hared...
I think Zattoo is a very interesting App for watching TV on the HD2 - for me here in Germany.
If I get it running again, I will try to start it with an Switzerland-Proxy, because then also the private TV channels like RTL, SAT1, ... are avaible (already tested on PC)
Edit: Crashes also in Nand-Rom (tried NexusHD2-JellyBean-4.1.2-CM10 V1.2 // NAND with DataOnEXT)
Hmm.., maybe the Android Version (JB) is the reason? I think it was running on ICS on SD (WinMo Nand) when I was able to use it in the past.
Edit2: I will try to test in EvoHD2v10 ICS 4.0.4-full HWA "Fastest ICS ever" with NativeSD method. => Doesn't run
Hmm.., what can it be?
Thanks a lot
giovanne
giovanne said:
Hi all,
is someone using the App Zattoo on NativeSD Rom (e.g. Xylos Pacman 1.2a)?
I'm very interesting if this is running, because I can't get it working at the moment (app crashes after starting "zattoo wurde leider beendet").
...
Hmm.., what can it be?
Thanks a lot
giovanne
Click to expand...
Click to collapse
Do you have installed the flash-player? Search at the following url for "Flash Player for Android 4.0 archives"... today it's version 11.1.115.27...
http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html
Cheers
Klaus
Sent from my HTC HD2 using xda app-developers app
o82239 said:
Do you have installed the flash-player? Search at the following url for "Flash Player for Android 4.0 archives"... today it's version 11.1.115.27...
http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html
Cheers
Klaus
Sent from my HTC HD2 using xda app-developers app
Click to expand...
Click to collapse
Thanks for the answer.
But yes, exactly the Player Version I have installed. It is necessary when starting Zattoo from within Browser (by using a proxy for getting an switzerland IP adress and also all the german private channels . Starting Zattoo within Browser otherwise with german IP won't start because for german IP there is the App for using Zattoo.
But I can't start the Zattoo App anymore (also with Flash Player installed, but I think normally not needed for the app)
In the past last summer on holiday I used the App and it was very very good. Smooth playing the TV channels.
Can someone analyse something from the logcat when the Zattoo App is crashing?
Because of a Null pointer exception...
Code:
I/ActivityManager( 265): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.zattoo.player/.ui.StartupActivity bnds=[240,353][240,353] u=0} from pid 471
V/PhoneStatusBar( 343): setLightsOn(true)
D/libEGL ( 9610): loaded /system/lib/egl/libEGL_adreno200.so
D/libEGL ( 9610): loaded /system/lib/egl/libGLESv1_CM_adreno200.so
D/libEGL ( 9610): loaded /system/lib/egl/libGLESv2_adreno200.so
I/Adreno200-EGL( 9610): <qeglDrvAPI_eglInitialize:294>: EGL 1.4 QUALCOMM build: AU_LINUX_ANDROID_JB.04.01.01.00.036_msm8960_JB_CL2644550_release_AU (CL2644550)
I/Adreno200-EGL( 9610): Build Date: 07/31/12 Tue
I/Adreno200-EGL( 9610): Local Branch:
I/Adreno200-EGL( 9610): Remote Branch: quic/master
I/Adreno200-EGL( 9610): Local Patches: NONE
I/Adreno200-EGL( 9610): Reconstruct Branch: AU_LINUX_ANDROID_JB.04.01.01.00.036 + NOTHING
D/OpenGLRenderer( 9610): Enabling debug mode 0
I/ActivityManager( 265): Displayed com.zattoo.player/.ui.StartupActivity: +435ms (total +2m32s986ms)
I/ActivityManager( 265): START {cmp=com.zattoo.player/.ui.ChannelsActivity u=0} from pid 9610
D/dalvikvm( 9610): GC_FOR_ALLOC freed 3271K, 55% free 3849K/8451K, paused 44ms, total 47ms
D/AndroidRuntime( 9610): Shutting down VM
W/dalvikvm( 9610): threadid=1: thread exiting with uncaught exception (group=0x40ab3300)
E/AndroidRuntime( 9610): FATAL EXCEPTION: main
E/AndroidRuntime( 9610): java.lang.NullPointerException
E/AndroidRuntime( 9610): at com.zattoo.player.ui.ChannelsAdapter.getView(ChannelsAdapter.java:118)
E/AndroidRuntime( 9610): at android.widget.AbsListView.obtainView(AbsListView.java:2273)
E/AndroidRuntime( 9610): at android.widget.ListView.measureHeightOfChildren(ListView.java:1244)
E/AndroidRuntime( 9610): at android.widget.ListView.onMeasure(ListView.java:1156)
E/AndroidRuntime( 9610): at android.view.View.measure(View.java:15172)
E/AndroidRuntime( 9610): at android.widget.RelativeLayout.measureChild(RelativeLayout.java:602)
E/AndroidRuntime( 9610): at android.widget.RelativeLayout.onMeasure(RelativeLayout.java:415)
E/AndroidRuntime( 9610): at android.view.View.measure(View.java:15172)
E/AndroidRuntime( 9610): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4816)
E/AndroidRuntime( 9610): at android.widget.FrameLayout.onMeasure(FrameLayout.java:310)
E/AndroidRuntime( 9610): at android.view.View.measure(View.java:15172)
E/AndroidRuntime( 9610): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4816)
E/AndroidRuntime( 9610): at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1390)
E/AndroidRuntime( 9610): at android.widget.LinearLayout.measureVertical(LinearLayout.java:681)
E/AndroidRuntime( 9610): at android.widget.LinearLayout.onMeasure(LinearLayout.java:574)
E/AndroidRuntime( 9610): at android.view.View.measure(View.java:15172)
E/AndroidRuntime( 9610): at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4816)
E/AndroidRuntime( 9610): at android.widget.FrameLayout.onMeasure(FrameLayout.java:310)
E/AndroidRuntime( 9610): at com.android.internal.policy.impl.PhoneWindow$DecorView.onMeasure(PhoneWindow.java:2149)
E/AndroidRuntime( 9610): at android.view.View.measure(View.java:15172)
E/AndroidRuntime( 9610): at android.view.ViewRootImpl.performMeasure(ViewRootImpl.java:1850)
E/AndroidRuntime( 9610): at android.view.ViewRootImpl.measureHierarchy(ViewRootImpl.java:1102)
E/AndroidRuntime( 9610): at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1275)
E/AndroidRuntime( 9610): at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1000)
E/AndroidRuntime( 9610): at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:4214)
E/AndroidRuntime( 9610): at android.view.Choreographer$CallbackRecord.run(Choreographer.java:725)
E/AndroidRuntime( 9610): at android.view.Choreographer.doCallbacks(Choreographer.java:555)
E/AndroidRuntime( 9610): at android.view.Choreographer.doFrame(Choreographer.java:525)
E/AndroidRuntime( 9610): at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:711)
E/AndroidRuntime( 9610): at android.os.Handler.handleCallback(Handler.java:615)
E/AndroidRuntime( 9610): at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime( 9610): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 9610): at android.app.ActivityThread.main(ActivityThread.java:4965)
E/AndroidRuntime( 9610): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 9610): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 9610): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
E/AndroidRuntime( 9610): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:558)
E/AndroidRuntime( 9610): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager( 265): Force finishing activity com.zattoo.player/.ui.ChannelsActivity
W/ActivityManager( 265): Activity pause timeout for ActivityRecord{417872e0 com.zattoo.player/.ui.ChannelsActivity}
I/Adreno200-EGL( 471): <qeglDrvAPI_eglInitialize:294>: EGL 1.4 QUALCOMM build: AU_LINUX_ANDROID_JB.04.01.01.00.036_msm8960_JB_CL2644550_release_AU (CL2644550)
I/Adreno200-EGL( 471): Build Date: 07/31/12 Tue
I/Adreno200-EGL( 471): Local Branch:
I/Adreno200-EGL( 471): Remote Branch: quic/master
I/Adreno200-EGL( 471): Local Patches: NONE
I/Adreno200-EGL( 471): Reconstruct Branch: AU_LINUX_ANDROID_JB.04.01.01.00.036 + NOTHING

[Q] Constantly receiving com.google.process.location and Google Play has stopped

After every reboot I receive the following messages
Code:
com.google.process.location
Code:
Google Play services has stopped
I am running a Samsung Galaxy S5 Active (G870AuCU1ANE4) - rooted with stock ROM, this all just started a week or two ago, and it happens randomly during charging as well. I was reading this thread http://forum.xda-developers.com/galaxy-s3/help/how-to-fix-unfortunately-process-com-t2410896/page4 related to the S3, but no luck with those recommendations, and it was for a different error message and different phone, hence this thread. Any assistance would be appreciated.
DrSeussFreak said:
After every reboot I receive the following messages
Code:
com.google.process.location
Code:
Google Play services has stopped
I am running a Samsung Galaxy S5 Active (G870AuCU1ANE4) - rooted with stock ROM, this all just started a week or two ago, and it happens randomly during charging as well. I was reading this thread http://forum.xda-developers.com/galaxy-s3/help/how-to-fix-unfortunately-process-com-t2410896/page4 related to the S3, but no luck with those recommendations, and it was for a different error message and different phone, hence this thread. Any assistance would be appreciated.
Click to expand...
Click to collapse
did you freeze/delete any system apps? that can cause these type of issues
if you have a root browser installed go to /data/log there should be a set of error logs zipped into a tar.gz file copy that out to your sdcard extract it and search the contents for fatal errors or missing files that should tell you what the root cause is.
cstayton said:
did you freeze/delete any system apps? that can cause these type of issues
if you have a root browser installed go to /data/log there should be a set of error logs zipped into a tar.gz file copy that out to your sdcard extract it and search the contents for fatal errors or missing files that should tell you what the root cause is.
Click to expand...
Click to collapse
So I have froze multiple AT&T applications, but nothing recently, and I had reset app preferences (which unfroze everything) and the issue still existed.
What I found in "dumpstate_app_error.txt" was
Code:
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:11 height:12 bitmap id is 270
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:3 height:69 bitmap id is 271
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 272
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 273
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 274
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 275
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 276
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 277
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 278
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 279
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 280
10-22 18:33:33.636 22940 22940 I dalvikvm: Could not find method android.os.PowerManager.isPowerSaveMode, referenced from method com.google.android.location.n.y.d
10-22 18:33:33.636 22940 22940 W dalvikvm: VFY: unable to resolve virtual method 1458: Landroid/os/PowerManager;.isPowerSaveMode ()Z
10-22 18:33:33.636 22940 22940 D dalvikvm: VFY: replacing opcode 0x6e at 0x000a
10-22 18:33:33.646 30602 30619 D skia : GFXPNG PNG bitmap created width:13 height:64 bitmap id is 281
10-22 18:33:33.646 30602 30619 D skia : GFXPNG PNG bitmap created width:12 height:12 bitmap id is 282
10-22 18:33:33.646 30602 30619 D skia : GFXPNG PNG bitmap created width:32 height:32 bitmap id is 283
10-22 18:33:33.656 893 1879 D EnterpriseDeviceManager: ContainerId: 0
10-22 18:33:33.666 30602 30619 D skia : GFXPNG PNG bitmap created width:16 height:16 bitmap id is 284
10-22 18:33:33.666 30602 30619 D skia : GFXPNG PNG bitmap created width:32 height:32 bitmap id is 285
10-22 18:33:33.676 30602 30620 D skia : GFXPNG PNG bitmap created width:96 height:96 bitmap id is 286
10-22 18:33:33.676 30602 30617 D skia : GFXPNG PNG bitmap created width:16 height:16 bitmap id is 287
10-22 18:33:33.676 893 1000 E LightSensor: RED : 0, GREEN : 0, BLUE : 0, CLEAR : 0, CALCULATED LUX : 0.000000, CCT : 1596.000000, REAL LUX : 0.000000 a_time = 238, gain = 64, ir=0, rp1=1, gp1=0, bp1=0, cp1=0, cpl=3202560
10-22 18:33:33.686 30602 30617 D skia : GFXPNG PNG bitmap created width:32 height:32 bitmap id is 288
10-22 18:33:33.686 30602 30621 D skia : GFXPNG PNG bitmap created width:16 height:16 bitmap id is 289
10-22 18:33:33.686 30602 30621 D skia : GFXPNG PNG bitmap created width:32 height:32 bitmap id is 290
10-22 18:33:33.696 22940 22940 D AndroidRuntime: Shutting down VM
10-22 18:33:33.696 22940 22940 W dalvikvm: threadid=1: thread exiting with uncaught exception (group=0x4178eda0)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: FATAL EXCEPTION: main
10-22 18:33:33.696 22940 22940 E AndroidRuntime: Process: com.google.process.location, PID: 22940
10-22 18:33:33.696 22940 22940 E AndroidRuntime: java.lang.RuntimeException: Unable to bind to service [email protected]388 with Intent { act=com.android.location.service.v3.NetworkLocationProvider pkg=com.google.android.gms }: java.lang.NullPointerException: null result when primitive expected
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread.handleBindService(ActivityThread.java:2842)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread.access$2000(ActivityThread.java:173)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1390)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.os.Looper.loop(Looper.java:136)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5579)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at java.lang.reflect.Method.invokeNative(Native Method)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at java.lang.reflect.Method.invoke(Method.java:515)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1268)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1084)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at dalvik.system.NativeStart.main(Native Method)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: Caused by: java.lang.NullPointerException: null result when primitive expected
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at com.google.android.location.network.NetworkLocationService.a(Native Method)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at com.google.android.location.network.NetworkLocationService.onBind(SourceFile:55)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread.handleBindService(ActivityThread.java:2829)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: ... 11 more
DrSeussFreak said:
So I have froze multiple AT&T applications, but nothing recently, and I had reset app preferences (which unfroze everything) and the issue still existed.
What I found in "dumpstate_app_error.txt" was
Code:
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:11 height:12 bitmap id is 270
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:3 height:69 bitmap id is 271
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 272
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 273
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 274
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 275
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 276
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 277
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 278
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 279
10-22 18:33:33.636 30602 30619 D skia : GFXPNG PNG bitmap created width:64 height:64 bitmap id is 280
10-22 18:33:33.636 22940 22940 I dalvikvm: Could not find method android.os.PowerManager.isPowerSaveMode, referenced from method com.google.android.location.n.y.d
10-22 18:33:33.636 22940 22940 W dalvikvm: VFY: unable to resolve virtual method 1458: Landroid/os/PowerManager;.isPowerSaveMode ()Z
10-22 18:33:33.636 22940 22940 D dalvikvm: VFY: replacing opcode 0x6e at 0x000a
10-22 18:33:33.646 30602 30619 D skia : GFXPNG PNG bitmap created width:13 height:64 bitmap id is 281
10-22 18:33:33.646 30602 30619 D skia : GFXPNG PNG bitmap created width:12 height:12 bitmap id is 282
10-22 18:33:33.646 30602 30619 D skia : GFXPNG PNG bitmap created width:32 height:32 bitmap id is 283
10-22 18:33:33.656 893 1879 D EnterpriseDeviceManager: ContainerId: 0
10-22 18:33:33.666 30602 30619 D skia : GFXPNG PNG bitmap created width:16 height:16 bitmap id is 284
10-22 18:33:33.666 30602 30619 D skia : GFXPNG PNG bitmap created width:32 height:32 bitmap id is 285
10-22 18:33:33.676 30602 30620 D skia : GFXPNG PNG bitmap created width:96 height:96 bitmap id is 286
10-22 18:33:33.676 30602 30617 D skia : GFXPNG PNG bitmap created width:16 height:16 bitmap id is 287
10-22 18:33:33.676 893 1000 E LightSensor: RED : 0, GREEN : 0, BLUE : 0, CLEAR : 0, CALCULATED LUX : 0.000000, CCT : 1596.000000, REAL LUX : 0.000000 a_time = 238, gain = 64, ir=0, rp1=1, gp1=0, bp1=0, cp1=0, cpl=3202560
10-22 18:33:33.686 30602 30617 D skia : GFXPNG PNG bitmap created width:32 height:32 bitmap id is 288
10-22 18:33:33.686 30602 30621 D skia : GFXPNG PNG bitmap created width:16 height:16 bitmap id is 289
10-22 18:33:33.686 30602 30621 D skia : GFXPNG PNG bitmap created width:32 height:32 bitmap id is 290
10-22 18:33:33.696 22940 22940 D AndroidRuntime: Shutting down VM
10-22 18:33:33.696 22940 22940 W dalvikvm: threadid=1: thread exiting with uncaught exception (group=0x4178eda0)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: FATAL EXCEPTION: main
10-22 18:33:33.696 22940 22940 E AndroidRuntime: Process: com.google.process.location, PID: 22940
10-22 18:33:33.696 22940 22940 E AndroidRuntime: java.lang.RuntimeException: Unable to bind to service [email protected]388 with Intent { act=com.android.location.service.v3.NetworkLocationProvider pkg=com.google.android.gms }: java.lang.NullPointerException: null result when primitive expected
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread.handleBindService(ActivityThread.java:2842)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread.access$2000(ActivityThread.java:173)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1390)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.os.Looper.loop(Looper.java:136)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5579)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at java.lang.reflect.Method.invokeNative(Native Method)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at java.lang.reflect.Method.invoke(Method.java:515)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1268)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1084)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at dalvik.system.NativeStart.main(Native Method)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: Caused by: java.lang.NullPointerException: null result when primitive expected
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at com.google.android.location.network.NetworkLocationService.a(Native Method)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at com.google.android.location.network.NetworkLocationService.onBind(SourceFile:55)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: at android.app.ActivityThread.handleBindService(ActivityThread.java:2829)
10-22 18:33:33.696 22940 22940 E AndroidRuntime: ... 11 more
Click to expand...
Click to collapse
the two lines from your log below reference the issue at hand, one of two things is happening either the /data/data/<app folder> is missing
or the apps were frozen or deleted. both power saving and location services have more than one call from several system apks as well as user apks. if you have titanium backup and used that to freeze apps try restoring data for the apps that you froze see if that helps, otherwise my next sugestion would be to odin back to stock and start over.
10-22 18:33:33.636 22940 22940 I dalvikvm: Could not find method android.os.PowerManager.isPowerSaveMode, referenced from method com.google.android.location.n.y.d
10-22 18:33:33.696 22940 22940 E AndroidRuntime: java.lang.RuntimeException: Unable to bind to service [email protected]388 with Intent { act=com.android.location.service.v3.NetworkLocationProvider pkg=com.google.android.gms }: java.lang.NullPointerException: null result when primitive expected
Click to expand...
Click to collapse
cstayton said:
the two lines from your log below reference the issue at hand, one of two things is happening either the /data/data/<app folder> is missing
or the apps were frozen or deleted. both power saving and location services have more than one call from several system apks as well as user apks. if you have titanium backup and used that to freeze apps try restoring data for the apps that you froze see if that helps, otherwise my next sugestion would be to odin back to stock and start over.
Click to expand...
Click to collapse
so this issue occured when ALL apps were unfrozen, no apps have ever been deleted, and I am running stock.
So I figured it out, in Xposed, I had a module called "Disable Location Consent" enabled, and as soon as I disabled and rebooted this error went away, enabled rebooted and it came back, disabled and rebooted and it is gone, so I am just waiting for an update, will contact the developer to let them know.
//edit
http://forum.xda-developers.com/xposed/modules/mod-disable-google-location-consent-t2449926/page27 -- looks like I don't need too
DrSeussFreak said:
So I figured it out, in Xposed, I had a module called "Disable Location Consent" enabled, and as soon as I disabled and rebooted this error went away, enabled rebooted and it came back, disabled and rebooted and it is gone, so I am just waiting for an update, will contact the developer to let them know.
//edit
http://forum.xda-developers.com/xposed/modules/mod-disable-google-location-consent-t2449926/page27 -- looks like I don't need too
Click to expand...
Click to collapse
ahhh yes, good ol xPosed framework it can cause wierd issues
cstayton said:
ahhh yes, good ol xPosed framework it can cause wierd issues
Click to expand...
Click to collapse
indeed
cstayton said:
did you freeze/delete any system apps? that can cause these type of issues
if you have a root browser installed go to /data/log there should be a set of error logs zipped into a tar.gz file copy that out to your sdcard extract it and search the contents for fatal errors or missing files that should tell you what the root cause is.
Click to expand...
Click to collapse
I get this when I use the Xposed app to grant the location pop ups. Can't remember the exact name but it is supposed to stop the lil pop up from asking can it say where I am...
You using ANY xposed modules?
DrSeussFreak said:
So I figured it out, in Xposed, I had a module called "Disable Location Consent" enabled, and as soon as I disabled and rebooted this error went away, enabled rebooted and it came back, disabled and rebooted and it is gone, so I am just waiting for an update, will contact the developer to let them know.
//edit
http://forum.xda-developers.com/xposed/modules/mod-disable-google-location-consent-t2449926/page27 -- looks like I don't need too
Click to expand...
Click to collapse
Oh my god... This was driving me NUTS all day :S I can't believe that Xposed module "Disable Location Consent" was causing this problem... THANKS!!!!
xddd00 said:
Oh my god... This was driving me NUTS all day :S I can't believe that Xposed module "Disable Location Consent" was causing this problem... THANKS!!!!
Click to expand...
Click to collapse
Happy this helped somebody else

No modules works

Hey. I installed modules. I were using them a few months ago.
Code:
.
-----------------
19 wrz 2016 15:01:38 UTC
Loading Xposed v54 (for Zygote)...
Running ROM 'KM_DRIVE_23122014_V1.4_ROOTED' with fingerprint 'Android/msm8x25q_d5/msm8x25q_d5:4.1.2/JZO54K/eng.android.20141223.174135:user/test-keys'
Loading modules from /data/app/ryebread761.darktube-1.apk
Loading class ryebread761.darktube.DarkTube
Loading modules from /data/app/com.pyler.youtubebackgroundplayback-1.apk
Loading class com.pyler.youtubebackgroundplayback.YouTubeBackgroundPlayback
Loading modules from /data/app/ma.wanam.youtubeadaway-1.apk
Loading class ma.wanam.youtubeadaway.Xposed
android.content.res.Resources$NotFoundException: com.google.android.youtube:layout/guide_activity
at android.content.res.XResources.hookLayout(XResources.java:1178)
at ryebread761.darktube.DarkTube.handleInitPackageResources(DarkTube.java:16)
at de.robv.android.xposed.IXposedHookInitPackageResources$Wrapper.handleInitPackageResources(IXposedHookInitPackageResources.java:20)
at de.robv.android.xposed.callbacks.XC_InitPackageResources.call(XC_InitPackageResources.java:28)
at de.robv.android.xposed.callbacks.XCallback.callAll(XCallback.java:70)
at de.robv.android.xposed.XposedBridge$6.afterHookedMethod(XposedBridge.java:344)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:645)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ActivityThread.getTopLevelResources(ActivityThread.java:1626)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ApplicationPackageManager.getResourcesForApplication(ApplicationPackageManager.java:714)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ApplicationPackageManager.getResourcesForApplication(Native Method)
at android.app.ApplicationPackageManager.getXml(ApplicationPackageManager.java:944)
at android.content.pm.PackageItemInfo.loadXmlMetaData(PackageItemInfo.java:216)
at android.app.SearchableInfo.getActivityMetaData(SearchableInfo.java:515)
at android.server.search.Searchables.buildSearchableList(Searchables.java:222)
at android.server.search.SearchManagerService.getSearchables(SearchManagerService.java:74)
at android.server.search.SearchManagerService.getGlobalSearchActivity(SearchManagerService.java:177)
at android.app.ISearchManager$Stub.onTransact(ISearchManager.java:86)
at android.os.Binder.execTransact(Binder.java:367)
at dalvik.system.NativeStart.run(Native Method)
android.content.res.Resources$NotFoundException: com.google.android.youtube:layout/guide_activity
at android.content.res.XResources.hookLayout(XResources.java:1178)
at ryebread761.darktube.DarkTube.handleInitPackageResources(DarkTube.java:16)
at de.robv.android.xposed.IXposedHookInitPackageResources$Wrapper.handleInitPackageResources(IXposedHookInitPackageResources.java:20)
at de.robv.android.xposed.callbacks.XC_InitPackageResources.call(XC_InitPackageResources.java:28)
at de.robv.android.xposed.callbacks.XCallback.callAll(XCallback.java:70)
at de.robv.android.xposed.XposedBridge$6.afterHookedMethod(XposedBridge.java:344)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:645)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ActivityThread.getTopLevelResources(ActivityThread.java:1626)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ApplicationPackageManager.getResourcesForApplication(ApplicationPackageManager.java:714)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ApplicationPackageManager.getResourcesForApplication(Native Method)
at android.app.ApplicationPackageManager.getText(ApplicationPackageManager.java:916)
at android.content.pm.ComponentInfo.loadLabel(ComponentInfo.java:94)
at android.content.pm.ResolveInfo.loadLabel(ResolveInfo.java:153)
at com.android.providers.applications.ApplicationsProvider.updateApplicationsList(ApplicationsProvider.java:531)
at com.android.providers.applications.ApplicationsProvider.access$500(ApplicationsProvider.java:69)
at com.android.providers.applications.ApplicationsProvider$UpdateHandler.handleMessage(ApplicationsProvider.java:215)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.os.HandlerThread.run(HandlerThread.java:60)
android.content.res.Resources$NotFoundException: com.google.android.youtube:layout/guide_activity
at android.content.res.XResources.hookLayout(XResources.java:1178)
at ryebread761.darktube.DarkTube.handleInitPackageResources(DarkTube.java:16)
at de.robv.android.xposed.IXposedHookInitPackageResources$Wrapper.handleInitPackageResources(IXposedHookInitPackageResources.java:20)
at de.robv.android.xposed.callbacks.XC_InitPackageResources.call(XC_InitPackageResources.java:28)
at de.robv.android.xposed.callbacks.XCallback.callAll(XCallback.java:70)
at de.robv.android.xposed.XposedBridge$6.afterHookedMethod(XposedBridge.java:344)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:645)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ActivityThread.getTopLevelResources(ActivityThread.java:1626)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ApplicationPackageManager.getResourcesForApplication(ApplicationPackageManager.java:714)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ApplicationPackageManager.getResourcesForApplication(Native Method)
at android.app.ApplicationPackageManager.getText(ApplicationPackageManager.java:916)
at android.content.pm.ComponentInfo.loadLabel(ComponentInfo.java:94)
at android.content.pm.ResolveInfo.loadLabel(ResolveInfo.java:153)
at com.android.launcher2.LauncherModel$ShortcutNameComparator.compare(LauncherModel.java:2584)
at com.android.launcher2.LauncherModel$ShortcutNameComparator.compare(LauncherModel.java:2566)
at java.util.TimSort.binarySort(TimSort.java:261)
at java.util.TimSort.sort(TimSort.java:204)
at java.util.TimSort.sort(TimSort.java:169)
at java.util.Arrays.sort(Arrays.java:2038)
at java.util.Collections.sort(Collections.java:1891)
at com.android.launcher2.LauncherModel$LoaderTask.loadAllAppsByBatch(LauncherModel.java:1933)
at com.android.launcher2.LauncherModel$LoaderTask.loadAndBindAllApps(LauncherModel.java:1838)
at com.android.launcher2.LauncherModel$LoaderTask.run(LauncherModel.java:1112)
at android.os.Handler.handleCallback(Handler.java:615)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.os.HandlerThread.run(HandlerThread.java:60)
YouTube: com.google.android.youtube 11.33.58 loaded!
YouTube AdAway 3.3.1: Trying brute force way...
android.content.res.Resources$NotFoundException: com.google.android.youtube:layout/guide_activity
at android.content.res.XResources.hookLayout(XResources.java:1178)
at ryebread761.darktube.DarkTube.handleInitPackageResources(DarkTube.java:16)
at de.robv.android.xposed.IXposedHookInitPackageResources$Wrapper.handleInitPackageResources(IXposedHookInitPackageResources.java:20)
at de.robv.android.xposed.callbacks.XC_InitPackageResources.call(XC_InitPackageResources.java:28)
at de.robv.android.xposed.callbacks.XCallback.callAll(XCallback.java:70)
at de.robv.android.xposed.XposedBridge$6.afterHookedMethod(XposedBridge.java:344)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:645)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ActivityThread.getTopLevelResources(ActivityThread.java:1626)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.LoadedApk.getResources(LoadedApk.java:474)
at android.app.ContextImpl.init(ContextImpl.java:1582)
at android.app.ContextImpl.init(ContextImpl.java:1574)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4024)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ActivityThread.handleBindApplication(Native Method)
at android.app.ActivityThread.access$1300(ActivityThread.java:133)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1263)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4794)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556)
at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
at dalvik.system.NativeStart.main(Native Method)
YouTube AdAway: Successfully hooked nsb constructor!
YouTube AdAway: Successfully hooked sequence: class =koq params=mbo, mez, kpn, koi
YouTube: com.google.android.youtube 11.33.58 loaded!
YouTube AdAway 3.3.1: Trying brute force way...
android.content.res.Resources$NotFoundException: com.google.android.youtube:layout/guide_activity
at android.content.res.XResources.hookLayout(XResources.java:1178)
at ryebread761.darktube.DarkTube.handleInitPackageResources(DarkTube.java:16)
at de.robv.android.xposed.IXposedHookInitPackageResources$Wrapper.handleInitPackageResources(IXposedHookInitPackageResources.java:20)
at de.robv.android.xposed.callbacks.XC_InitPackageResources.call(XC_InitPackageResources.java:28)
at de.robv.android.xposed.callbacks.XCallback.callAll(XCallback.java:70)
at de.robv.android.xposed.XposedBridge$6.afterHookedMethod(XposedBridge.java:344)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:645)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ActivityThread.getTopLevelResources(ActivityThread.java:1626)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.LoadedApk.getResources(LoadedApk.java:474)
at android.app.ContextImpl.init(ContextImpl.java:1582)
at android.app.ContextImpl.init(ContextImpl.java:1574)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4024)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ActivityThread.handleBindApplication(Native Method)
at android.app.ActivityThread.access$1300(ActivityThread.java:133)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1263)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4794)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556)
at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
at dalvik.system.NativeStart.main(Native Method)
YouTube AdAway: Successfully hooked nsb constructor!
YouTube AdAway: Successfully hooked sequence: class =koq params=mbo, mez, kpn, koi
android.content.res.Resources$NotFoundException: com.google.android.youtube:layout/guide_activity
at android.content.res.XResources.hookLayout(XResources.java:1178)
at ryebread761.darktube.DarkTube.handleInitPackageResources(DarkTube.java:16)
at de.robv.android.xposed.IXposedHookInitPackageResources$Wrapper.handleInitPackageResources(IXposedHookInitPackageResources.java:20)
at de.robv.android.xposed.callbacks.XC_InitPackageResources.call(XC_InitPackageResources.java:28)
at de.robv.android.xposed.callbacks.XCallback.callAll(XCallback.java:70)
at de.robv.android.xposed.XposedBridge$6.afterHookedMethod(XposedBridge.java:344)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:645)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ActivityThread.getTopLevelResources(ActivityThread.java:1626)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ActivityThread.getTopLevelResources(Native Method)
at android.app.ApplicationPackageManager.getResourcesForApplication(ApplicationPackageManager.java:714)
at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
at android.app.ApplicationPackageManager.getResourcesForApplication(Native Method)
at android.app.ApplicationPackageManager.getText(ApplicationPackageManager.java:916)
at android.content.pm.ComponentInfo.loadLabel(ComponentInfo.java:94)
at com.android.systemui.recent.RecentTasksLoader.createTaskDescription(RecentTasksLoader.java:141)
at com.android.systemui.recent.RecentTasksLoader$1.doInBackground(RecentTasksLoader.java:266)
at com.android.systemui.recent.RecentTasksLoader$1.doInBackground(RecentTasksLoader.java:230)
at android.os.AsyncTask$2.call(AsyncTask.java:287)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
at java.util.concurrent.FutureTask.run(FutureTask.java:137)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
at java.lang.Thread.run(Thread.java:856)

Categories

Resources