Related
OS: Ice Cream Sandwich
Device: Motorola Xoom
I am having issues with a simple service not running correctly.
The logcat shows some force stopping on the installed apk. Also the broadcast receiver should listen to android.intent.action.ACTION_POWER_CONNECTED but it is not. Any insight?
This all worked on froyo 2.2 on a samsung galaxy tab.
Here is the snippet from logcat when I do an 'adb install testService.apk:
Code:
D/AndroidRuntime(15251):
D/AndroidRuntime(15251): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
D/AndroidRuntime(15251): CheckJNI is OFF
D/AndroidRuntime(15251): Calling main entry com.android.commands.pm.Pm
I/ActivityManager( 153): Start proc com.android.defcontainer for service com.android.defcontainer/.DefaultContainerService: pid=15261 uid=10010 gids={1015, 2001}
W/PackageManager( 153): Couldn't get low memory threshold; no free limit imposed
W/ActivityManager( 153): No content provider found for permission revoke: file:///data/local/tmp/testService.apk
W/ActivityManager( 153): No content provider found for permission revoke: file:///data/local/tmp/testService.apk
I/PackageManager( 153): Running dexopt on: com.example.testservice
D/dalvikvm(15275): DexOpt: load 4ms, verify+opt 1ms
I/ActivityManager( 153): Force stopping package com.example.testservice uid=10014
D/PackageManager( 153): New package installed in /data/app/com.example.testservice-1.apk
D/PackageManager( 153): generateServicesMap(android.accounts.AccountAuthenticator): 3 services unchanged
D/PackageManager( 153): generateServicesMap(android.content.SyncAdapter): 11 services unchanged
I/ActivityManager( 153): Start proc com.android.voicedialer for broadcast com.android.voicedialer/.VoiceDialerReceiver: pid=15276 uid=10037 gids={3002}
W/ResourceType( 153): Failure getting entry for 0x7f060000 (t=5 e=0) in package 0 (error -75)
D/dalvikvm( 153): GC_CONCURRENT freed 1216K, 16% free 9901K/11783K, paused 3ms+7ms
D/dalvikvm(15276): Debugger has detached; object registry had 1 entries
D/BackupManagerService( 153): Received broadcast Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.example.testservice flg=0x10000010 (has extras) }
V/BackupManagerService( 153): addPackageParticipantsLocked: com.example.testservice
I/ActivityManager( 153): Start proc com.android.musicfx for broadcast com.android.musicfx/.Compatibility$Receiver: pid=15289 uid=10022 gids={3003, 3002}
I/ActivityManager( 153): Start proc com.svox.pico for broadcast com.svox.pico/.VoiceDataInstallerReceiver: pid=15303 uid=10025 gids={1015}
I/ActivityThread(15303): Pub com.svox.pico.providers.SettingsProvider: com.svox.pico.providers.SettingsProvider
I/ActivityManager( 153): Start proc com.google.android.partnersetup for broadcast com.google.android.partnersetup/.RlzPingBroadcastReceiver: pid=15318 uid=10049 gids={3003}
I/ActivityManager( 153): No longer want com.google.android.googlequicksearchbox (pid 1229): hidden #16
I/ActivityThread(15318): Pub com.google.android.partnersetup.rlzprovider: com.google.android.partnersetup.RlzProvider
I/ActivityThread(15318): Pub com.google.android.partnersetup.rlzappprovider: com.google.android.partnersetup.RlzAppProvider
D/dalvikvm( 153): GC_EXPLICIT freed 538K, 17% free 9866K/11783K, paused 2ms+11ms
D/AndroidRuntime(15251): Shutting down VM
I/AndroidRuntime(15251): NOTE: attach of thread 'Binder Thread #3' failed
D/dalvikvm(15251): GC_CONCURRENT freed 101K, 83% free 457K/2560K, paused 1ms+0ms
D/jdwp (15251): Got wake-up signal, bailing out of select
D/dalvikvm(15251): Debugger has detached; object registry had 1 entries
I/ActivityManager( 153): Start proc com.google.android.googlequicksearchbox for broadcast com.google.android.googlequicksearchbox/.SourceUpdateReceiver: pid=15333 uid=10048 gids={3003}
I/ActivityManager( 153): No longer want com.android.bluetooth (pid 1661): hidden #16
W/ActivityManager( 153): Scheduling restart of crashed service com.android.bluetooth/.pbap.BluetoothPbapService in 5000ms
W/ActivityManager( 153): Scheduling restart of crashed service com.android.bluetooth/.opp.BluetoothOppService in 14999ms
I/ActivityThread(15333): Pub com.google.android.googlequicksearchbox.shortcuts: com.google.android.googlequicksearchbox.WebHistoryProvider
I/ActivityThread(15333): Pub com.google.android.googlequicksearchbox.google: com.google.android.googlequicksearchbox.google.GoogleSuggestionProvider
I/ActivityManager( 153): No longer want com.google.android.apps.uploader (pid 3836): hidden #16
I/ActivityManager( 153): Start proc com.android.bluetooth for service com.android.bluetooth/.pbap.BluetoothPbapService: pid=15354 uid=10003 gids={3003, 3002, 3001, 1015}
I/ActivityThread(15354): Pub com.android.bluetooth.opp: com.android.bluetooth.opp.BluetoothOppProvider
I/ActivityManager( 153): No longer want com.android.browser (pid 1455): hidden #16
I/BtOppRfcommListener(15354): Accept thread started on channel 12
W/PowerUI ( 225): unknown intent: Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x10000010 }
D/dalvikvm( 225): GC_CONCURRENT freed 384K, 61% free 7755K/19399K, paused 6ms+4ms
W/PowerUI ( 225): unknown intent: Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x10000010 }
D/dalvikvm( 153): GC_CONCURRENT freed 781K, 17% free 9810K/11783K, paused 8ms+5ms
D/Smack ( 298): [[email protected]] create socket connection(mtalk.google.com, 5228)
Here is my broadcastReciever.
Code:
package com.example.testservice;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class myApplicationReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Log.i("TESTING-receiver",intent.getAction());
}
}
and here is my manifest:
Code:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testservice"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="15" />
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/AppTheme">
<receiver android:name="myApplicationReceiver">
<intent-filter>
<action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
</intent-filter>
</receiver>
</application>
</manifest>
Questions or Problems Should Not Be Posted in the Development Forum
Please Post in the Correct Forums & Read the Forum Rules
Thanks ✟
Moving to Q&A
Dear all,
i'm Fabrizio from Italy and i'm happy to be a new members of the forum.
I hope that this is a correct section :
I've two big problems with my android phone:
FIRST PROBLEM -CALENDARCG.APK If the phone is setting in english language , i can open the calendar, i can insert new event, i can edit event.
If i shift the phone in another language setting ( italian,french,german or other) i can open the calendar, but when i try to insert a new event,
i receive follow alert : "The application Calendar (process.com.android.calendar) has stopped unexpectedly. Please try again." - and asked to force close.
I tried to reset the phone, hard rest the hone, clear data but nothing..always same problem.
Please can you help me to solve these problem?? Have i to modify the AndroidManifest or what?
SECOND PROBLEM - PHONE.APK SOLVED
I decompiled Phone.apk( i've android 4.0.4 - multi apk tool with apktool 1.5.0- and i have to change translation on value-it ) without problem, and i tried to rebuild them (without change any file) and i received following error:
Code:
--------------------------------------------------------------------------
|05/12/2012 -- 22:08:37,87|
--------------------------------------------------------------------------
java version "1.6.0_27"
Java(TM) SE Runtime Environment (build 1.6.0_27-b07)
Java HotSpot(TM) 64-Bit Server VM (build 20.2-b06, mixed mode)
I: Loading resource table...
W: Skipping "android" package group
I: Loaded.
I: Decoding AndroidManifest.xml with resources...
I: Loading resource table from file: C:\Users\fakate\apktool\framework\1.apk
I: Loaded.
I: Decoding file-resources...
I: Decoding values */* XMLs...
I: Done.
I: Copying assets and libs...
W: Could not find sources
I: Checking whether resources has changed...
I: Building resources...
D:\android\APK\other\..\projects\Phone.apk\res\values\arrays.xml:158: error: Found tag reference-array where item is expected
D:\android\APK\other\..\projects\Phone.apk\res\values-nl\arrays.xml:131: error: Found tag reference-array where item is expected
D:\android\APK\other\..\projects\Phone.apk\res\values-pt-rPT\arrays.xml:131: error: Found tag reference-array where item is expected
D:\android\APK\other\..\projects\Phone.apk\res\values-es\strings.xml:248: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
D:\android\APK\other\..\projects\Phone.apk\res\values-es\strings.xml:249: error: Unexpected end tag string
D:\android\APK\other\..\projects\Phone.apk\res\values-it\strings.xml:248: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
D:\android\APK\other\..\projects\Phone.apk\res\values-it\strings.xml:249: error: Unexpected end tag string
D:\android\APK\other\..\projects\Phone.apk\res\values-ru\strings.xml:212: error: Multiple substitutions specified in non-positional format; did you mean to add the formatted="false" attribute?
D:\android\APK\other\..\projects\Phone.apk\res\values-ru\strings.xml:213: error: Unexpected end tag string
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:702: error: Public entry identifier 0x7f06002f entry index is larger than available symbols (index 47, total symbols 40).
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:702: error: Public symbol array/cdma_subscription_choices declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:695: error: Public entry identifier 0x7f060028 entry index is larger than available symbols (index 40, total symbols 40).
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:695: error: Public symbol array/cdma_subscription_values declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:689: error: Public symbol array/cdma_system_select_values declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:698: error: Public entry identifier 0x7f06002b entry index is larger than available symbols (index 43, total symbols 40).
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:698: error: Public symbol array/dtmf_tone_entries declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:699: error: Public symbol array/dtmf_tone_values declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:703: error: Public entry identifier 0x7f060030 entry index is larger than available symbols (index 48, total symbols 40).
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:703: error: Public symbol array/subscription_values declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:700: error: Public symbol array/td_network_mode_choices declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:701: error: Public symbol array/td_network_mode_values declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:696: error: Public entry identifier 0x7f060029 entry index is larger than available symbols (index 41, total symbols 40).
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:696: error: Public symbol array/tty_mode_entries declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:697: error: Public symbol array/tty_mode_values declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:674: error: Public symbol array/vt_incall_video_setting_entries2 declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:675: error: Public symbol array/vt_incall_video_setting_local_nightmode_entries declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:676: error: Public symbol array/vt_incall_video_setting_local_nightmode_entries2 declared here is not defined.
D:\android\APK\other\..\projects\Phone.apk\res\values\public.xml:677: error: Public symbol array/vt_incall_video_setting_peer_quality_entries declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 10, --target-sdk-version, 10, -F, C:\Users\fakate\AppData\Local\Temp\APKTOOL5211967303135877753.tmp, -I, C:\Users\fakate\apktool\framework\1.apk, -S, D:\android\APK\other\..\projects\Phone.apk\res, -M, D:\android\APK\other\..\projects\Phone.apk\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:255)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:324)
at brut.androlib.Androlib.buildResources(Androlib.java:269)
at brut.androlib.Androlib.build(Androlib.java:192)
at brut.androlib.Androlib.build(Androlib.java:174)
at brut.apktool.Main.cmdBuild(Main.java:188)
at brut.apktool.Main.main(Main.java:70)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, --min-sdk-version, 10, --target-sdk-version, 10, -F, C:\Users\fakate\AppData\Local\Temp\APKTOOL5211967303135877753.tmp, -I, C:\Users\fakate\apktool\framework\1.apk, -S, D:\android\APK\other\..\projects\Phone.apk\res, -M, D:\android\APK\other\..\projects\Phone.apk\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:253)
... 6 more
How i can solve both problems?
Tnx in advance for your help,
Courtesy up
Up
Sent from my 4S clone using xda app-developers app
Up again
Sent from my 4S clone using xda app-developers app
Hi, Phone.apk building problem solved.
Now remain the problem of calendarCG.
Please can suggets me an evenual solution?
Tnx,
Fabrizio
HI,attached teh APK.
I supose that the problem is in the dex file.......
flagello79 said:
HI,attached teh APK.
I supose that the problem is in the dex file.......
Click to expand...
Click to collapse
Sorry for double post,
but yesterday i attached wrong file.
The correct file are below.
Please note that th efile CAlendarCG.odex.zi is only renamed ( remove .zip to have original odex file)
Thx for your support in this case
Rgds,
Fabrizio
This is the log
Code:
12-09 12:13:49.649 I/ActivityManager(163): Start proc com.android.providers.calendar for content provider com.android.providers.calendar/.CalendarProvider2: pid=1582 uid=10006 gids={3003}
12-09 12:13:49.650 E/look-----------------------------------------------(1573): 31
12-09 12:13:49.679 I/SurfaceFlinger(163): [SurfaceFlinger] statistic - FrameCount: 120, Duration: 4290277us, fps: 27.970222
12-09 12:13:49.723 V/ActivityManager(163): Binding process pid 1582 to record ProcessRecord{40a22528 1582:com.android.providers.calendar/10006}
12-09 12:13:49.723 V/ActivityManager(163): New death recipient [email protected]0a359a0 for thread [email protected]
12-09 12:13:49.724 V/ActivityManager(163): New app record ProcessRecord{40a22528 1582:com.android.providers.calendar/10006} [email protected] pid=1582
Sent from my 4S using xda app-developers app
And Aldo this one:
Code:
12-09 12:59:08.000 E/InputDispatcher(163): channel '40a630d0 com.android.calendar/com.android.calendar.MonthActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x8
12-09 12:59:08.000 E/InputDispatcher(163): channel '40a630d0 com.android.calendar/com.android.calendar.MonthActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
Sent from my 4S using xda app-developers app
And this us the log when i've the phone setting language in english:
Code:
12-09 14:30:45.378 I/ActivityManager(163): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.calendar/.LaunchActivity bnds=[320,576][472,740] } from pid 287
12-09 14:30:45.527 I/ActivityManager(163): Start proc com.android.calendar for activity com.android.calendar/.LaunchActivity: pid=3180 uid=10006 gids={3003}
12-09 14:30:45.615 V/ActivityManager(163): Binding process pid 3180 to record ProcessRecord{40ade2d8 3180:com.android.calendar/10006}
12-09 14:30:45.615 V/ActivityManager(163): New app record ProcessRecord{40ade2d8 3180:com.android.calendar/10006} [email protected] pid=3180
12-09 14:30:45.616 V/ActivityManager(163): Launching: HistoryRecord{40a270d8 com.android.calendar/.LaunchActivity}
12-09 14:30:45.760 E/LaunchActivity(3180): onAccountsLoaded startActivity: com.android.calendar.MonthActivity
12-09 14:30:45.760 I/ActivityManager(163): Starting: Intent { flg=0x20020000 cmp=com.android.calendar/.MonthActivity } from pid 3180
12-09 14:30:45.768 V/ActivityManager(163): Enqueueing pending finish: HistoryRecord{40a270d8 com.android.calendar/.LaunchActivity}
12-09 14:30:45.768 V/ActivityManager(163): Launching: HistoryRecord{40c148e0 com.android.calendar/.MonthActivity}
12-09 14:30:46.138 I/CalendarProvider(1582): CalendarProvider2: query,uri=content://com.android.calendar/properties
12-09 14:30:46.160 I/CalendarProvider(1582): CalendarProvider2: query,uri=content://com.android.calendar/instances/whenbyday/2456271/2456271
12-09 14:30:46.166 I/CalendarProvider(1582): CalendarProvider2: query,uri=content://com.android.calendar/instances/whenbyday/2456271/2456271
12-09 14:30:46.172 I/CalendarProvider(1582): CalendarProvider2: query,uri=content://com.android.calendar/instances/whenbyday/2456271/2456271
12-09 14:30:46.180 I/CalendarProvider(1582): CalendarProvider2: query,uri=content://com.android.calendar/instances/whenbyday/2456271/2456271
12-09 14:30:46.228 I/CalendarProvider(1582): CalendarProvider2: query,uri=content://com.android.calendar/instances/groupbyday/2456263/2456293
12-09 14:30:46.474 V/ActivityManager(163): Activity idle: HistoryRecord{40c148e0 com.android.calendar/.MonthActivity}
12-09 14:30:46.580 I/ActivityManager(163): [AppLaunch] Displayed com.android.calendar/.MonthActivity: +812ms (total +1s150ms)
12-09 14:30:46.580 D/ActivityManager(163): AP_PROF:AppLaunch_LaunchTime:com.android.calendar/.MonthActivity:812:4344566
12-09 14:30:47.190 I/ActivityManager(163): Starting: Intent { act=android.intent.action.EDIT cmp=com.android.calendar/.EditEvent (has extras) } from pid 3180
12-09 14:30:47.203 V/ActivityManager(163): Launching: HistoryRecord{40a97848 com.android.calendar/.EditEvent}
12-09 14:30:47.443 I/CalendarProvider(1582): CalendarProvider2: query,uri=content://com.android.calendar/calendars
12-09 14:30:47.666 V/ActivityManager(163): Activity idle: HistoryRecord{40a97848 com.android.calendar/.EditEvent}
12-09 14:30:47.666 V/ActivityManager(163): Stopping HistoryRecord{40c148e0 com.android.calendar/.MonthActivity}: nowVisible=false waitingVisible=true finishing=false
12-09 14:30:47.875 I/ActivityManager(163): [AppLaunch] Displayed com.android.calendar/.EditEvent: +671ms
12-09 14:30:47.875 D/ActivityManager(163): AP_PROF:AppLaunch_LaunchTime:com.android.calendar/.EditEvent:671:4345860
12-09 14:30:47.875 V/ActivityManager(163): Stopping HistoryRecord{40c148e0 com.android.calendar/.MonthActivity}: nowVisible=true waitingVisible=false finishing=false
12-09 14:30:47.875 V/ActivityManager(163): Ready to stop: HistoryRecord{40c148e0 com.android.calendar/.MonthActivity}
12-09 14:30:47.883 V/ActivityManager(163): Activity stopped: token=HistoryRecord{40c148e0 com.android.calendar/.MonthActivity}
12-09 14:30:48.338 I/ActivityManager(163): Starting: Intent { cmp=com.android.calendar/.StartAndEndActivity (has extras) } from pid 3180
12-09 14:30:48.368 V/ActivityManager(163): Launching: HistoryRecord{40b06ef0 com.android.calendar/.StartAndEndActivity}
12-09 14:30:48.765 V/ActivityManager(163): Activity idle: HistoryRecord{40b06ef0 com.android.calendar/.StartAndEndActivity}
12-09 14:30:48.766 V/ActivityManager(163): Stopping HistoryRecord{40a97848 com.android.calendar/.EditEvent}: nowVisible=false waitingVisible=true finishing=false
12-09 14:30:48.889 I/ActivityManager(163): [AppLaunch] Displayed com.android.calendar/.StartAndEndActivity: +521ms
12-09 14:30:48.889 D/ActivityManager(163): AP_PROF:AppLaunch_LaunchTime:com.android.calendar/.StartAndEndActivity:521:4346875
12-09 14:30:48.889 V/ActivityManager(163): Stopping HistoryRecord{40a97848 com.android.calendar/.EditEvent}: nowVisible=true waitingVisible=false finishing=false
Sent from my 4S using xda app-developers app
Up
Sent from my 4S using xda app-developers app
up again:banghead::banghead::banghead::banghead:
Sent from my 4S using xda app-developers app
THIS IS A COMPLETE ERROR LOG
Code:
12-11 22:14:57.342 V/AlarmManager(182): 6: dic 12 12:08:00 p. com.android.providers.calendar
12-11 22:15:28.049 I/ActivityManager(182): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.calendar/.LaunchActivity bnds=[320,576][472,740] } from pid 13361
12-11 22:15:28.117 I/ActivityManager(182): Start proc com.android.calendar for activity com.android.calendar/.LaunchActivity: pid=25243 uid=10006 gids={3003}
12-11 22:15:28.173 V/ActivityManager(182): Binding process pid 25243 to record ProcessRecord{406ab498 25243:com.android.calendar/10006}
12-11 22:15:28.173 V/ActivityManager(182): New app record ProcessRecord{406ab498 25243:com.android.calendar/10006} [email protected] pid=25243
12-11 22:15:28.174 V/ActivityManager(182): Launching: HistoryRecord{405467f8 com.android.calendar/.LaunchActivity}
12-11 22:15:28.275 E/LaunchActivity(25243): onAccountsLoaded startActivity: com.android.calendar.MonthActivity
12-11 22:15:28.276 I/ActivityManager(182): Starting: Intent { flg=0x20020000 cmp=com.android.calendar/.MonthActivity } from pid 25243
12-11 22:15:28.278 V/ActivityManager(182): Enqueueing pending finish: HistoryRecord{405467f8 com.android.calendar/.LaunchActivity}
12-11 22:15:28.279 V/ActivityManager(182): Launching: HistoryRecord{40546a50 com.android.calendar/.MonthActivity}
12-11 22:15:28.701 I/ActivityManager(182): Start proc com.android.providers.calendar for content provider com.android.providers.calendar/.CalendarProvider2: pid=25252 uid=10006 gids={3003}
12-11 22:15:28.771 V/ActivityManager(182): Binding process pid 25252 to record ProcessRecord{406bb860 25252:com.android.providers.calendar/10006}
12-11 22:15:28.771 V/ActivityManager(182): New app record ProcessRecord{406bb860 25252:com.android.providers.calendar/10006} [email protected] pid=25252
12-11 22:15:28.796 I/ActivityThread(25252): Pub com.android.calendar: com.android.providers.calendar.CalendarProvider2
12-11 22:15:28.856 I/CalendarProvider(25252): onAccountsUpdated.
12-11 22:15:28.942 I/CalendarProvider(25252): AccountManager data account,nae=XXXXXXXXXXXX,type=com.google
12-11 22:15:28.943 I/CalendarProvider(25252): AccountManager data account,nae=XXXXXXXXXXXXXt,type=com.facebook.auth.login
12-11 22:15:28.943 I/CalendarProvider(25252): AccountManager data account,nae=XXXXXXXXXXXX,type=com.whatsapp
12-11 22:15:28.961 I/CalendarProvider(25252): CalendarProvider2: query,uri=content://com.android.calendar/properties
12-11 22:15:28.967 I/CalendarProvider(25252): CalendarProvider2: query,uri=content://com.android.calendar/instances/whenbyday/2456273/2456273
12-11 22:15:28.988 I/CalendarProvider(25252): CalendarProvider2: query,uri=content://com.android.calendar/instances/whenbyday/2456273/2456273
12-11 22:15:29.023 I/CalendarProvider(25252): CalendarProvider2: query,uri=content://com.android.calendar/calendar_alerts
12-11 22:15:29.039 I/CalendarProvider(25252): CalendarProvider2: query,uri=content://com.android.calendar/instances/groupbyday/2456263/2456293
12-11 22:15:29.140 D/Calendar(25252): missed alarms found: 0
12-11 22:15:29.148 I/ActivityManager(182): [AppLaunch] Displayed com.android.calendar/.MonthActivity: +870ms (total +1s36ms)
12-11 22:15:29.148 D/ActivityManager(182): AP_PROF:AppLaunch_LaunchTime:com.android.calendar/.MonthActivity:870:55329649
12-11 22:15:29.184 V/ActivityManager(182): Activity idle: HistoryRecord{40546a50 com.android.calendar/.MonthActivity}
12-11 22:15:30.511 I/ActivityManager(182): Starting: Intent { act=android.intent.action.EDIT cmp=com.android.calendar/.EditEvent (has extras) } from pid 25243
12-11 22:15:30.526 V/ActivityManager(182): Launching: HistoryRecord{40546dc0 com.android.calendar/.EditEvent}
12-11 22:15:30.770 I/CalendarProvider(25252): CalendarProvider2: query,uri=content://com.android.calendar/calendars
12-11 22:15:31.015 V/ActivityManager(182): Activity idle: HistoryRecord{40546dc0 com.android.calendar/.EditEvent}
12-11 22:15:31.016 V/ActivityManager(182): Stopping HistoryRecord{40546a50 com.android.calendar/.MonthActivity}: nowVisible=false waitingVisible=true finishing=false
12-11 22:15:31.224 I/ActivityManager(182): [AppLaunch] Displayed com.android.calendar/.EditEvent: +698ms
12-11 22:15:31.224 D/ActivityManager(182): AP_PROF:AppLaunch_LaunchTime:com.android.calendar/.EditEvent:698:55331725
12-11 22:15:31.225 V/ActivityManager(182): Stopping HistoryRecord{40546a50 com.android.calendar/.MonthActivity}: nowVisible=true waitingVisible=false finishing=false
12-11 22:15:31.225 V/ActivityManager(182): Ready to stop: HistoryRecord{40546a50 com.android.calendar/.MonthActivity}
12-11 22:15:31.229 V/ActivityManager(182): Activity stopped: token=HistoryRecord{40546a50 com.android.calendar/.MonthActivity}
12-11 22:15:31.787 I/ActivityManager(182): Starting: Intent { cmp=com.android.calendar/.StartAndEndActivity (has extras) } from pid 25243
12-11 22:15:31.818 V/ActivityManager(182): Launching: HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}
12-11 22:15:32.012 W/ActivityManager(182): Force finishing activity com.android.calendar/.StartAndEndActivity
12-11 22:15:32.014 W/ActivityManager(182): Force finishing activity com.android.calendar/.EditEvent
12-11 22:15:32.014 V/ActivityManager(182): Enqueueing pending finish: HistoryRecord{40546dc0 com.android.calendar/.EditEvent}
12-11 22:15:32.183 D/AES (182): process : com.android.calendar
12-11 22:15:32.183 D/AES (182): module : com.android.calendar v10 (4.0.4)
12-11 22:15:32.186 D/AEE/LIBAEE(182): shell: raise_exp(2, 25243, -1361051648, com.android.calendar, 0x0x633db8, 0x0x0)
12-11 22:15:32.186 E/AEE/LIBAEE(182): read_cmdline:com.android.calendar
12-11 22:15:32.513 W/ActivityManager(182): Activity pause timeout for HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}
12-11 22:15:32.513 V/ActivityManager(182): Enqueueing pending finish: HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}
12-11 22:15:34.083 I/ActivityManager(182): Process com.android.calendar (pid 25243) has died.
12-11 22:15:34.083 V/ActivityManager(182): Dying app: ProcessRecord{406ab498 25243:com.android.calendar/10006}, pid: 25243, thread: [email protected]
12-11 22:15:34.083 V/ActivityManager(182): Removing app ProcessRecord{406ab498 0:com.android.calendar/10006} from list [HistoryRecord{40545a68 com.android.browser/.BrowserActivity}, HistoryRecord{409d0738 com.android.contacts/.DialtactsActivity}, HistoryRecord{40549ca8 com.android.mms/.ui.ConversationList}, HistoryRecord{40b0afc0 com.android.phone/.InCallScreen}, HistoryRecord{40a73bc0 com.android.launcher/.Launcher}, HistoryRecord{40546dc0 com.android.calendar/.EditEvent}, HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}, HistoryRecord{40546a50 com.android.calendar/.MonthActivity}] with 8 entries
12-11 22:15:34.084 V/ActivityManager(182): Record #7 HistoryRecord{40546a50 com.android.calendar/.MonthActivity}: app=ProcessRecord{406ab498 0:com.android.calendar/10006}
12-11 22:15:34.084 V/ActivityManager(182): Record #6 HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}: app=ProcessRecord{406ab498 0:com.android.calendar/10006}
12-11 22:15:34.084 V/ActivityManager(182): Record #5 HistoryRecord{40546dc0 com.android.calendar/.EditEvent}: app=ProcessRecord{406ab498 0:com.android.calendar/10006}
12-11 22:15:34.084 V/ActivityManager(182): Removing app ProcessRecord{406ab498 0:com.android.calendar/10006} from list [] with 0 entries
12-11 22:15:34.084 V/ActivityManager(182): Removing app ProcessRecord{406ab498 0:com.android.calendar/10006} from list [HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}] with 1 entries
12-11 22:15:34.084 V/ActivityManager(182): Record #0 HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}: app=ProcessRecord{406ab498 0:com.android.calendar/10006}
12-11 22:15:34.084 V/ActivityManager(182): Removing app ProcessRecord{406ab498 0:com.android.calendar/10006} from list [HistoryRecord{40546dc0 com.android.calendar/.EditEvent}, HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}] with 2 entries
12-11 22:15:34.084 V/ActivityManager(182): Record #1 HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}: app=ProcessRecord{406ab498 0:com.android.calendar/10006}
12-11 22:15:34.084 V/ActivityManager(182): Record #0 HistoryRecord{40546dc0 com.android.calendar/.EditEvent}: app=ProcessRecord{406ab498 0:com.android.calendar/10006}
12-11 22:15:34.084 V/ActivityManager(182): Removing app ProcessRecord{406ab498 0:com.android.calendar/10006} from history with 9 entries
12-11 22:15:34.084 V/ActivityManager(182): Record #8 HistoryRecord{40547250 com.android.calendar/.StartAndEndActivity}: app=ProcessRecord{406ab498 0:com.android.calendar/10006}
12-11 22:15:34.087 E/InputDispatcher(182): channel '4054b4c8 com.android.calendar/com.android.calendar.MonthActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x8
12-11 22:15:34.087 E/InputDispatcher(182): channel '4054b4c8 com.android.calendar/com.android.calendar.MonthActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
12-11 22:15:34.091 V/ActivityManager(182): Record #7 HistoryRecord{40546dc0 com.android.calendar/.EditEvent}: app=ProcessRecord{406ab498 0:com.android.calendar/10006}
12-11 22:15:34.095 I/WindowManager(182): WIN DEATH: Window{40568fb8 com.android.calendar/com.android.calendar.EditEvent paused=true}
No suggestion?no idea?
Sent from my 4S using xda app-developers app
Up
Sent from my 4S using xda app-developers app
..and finally MONTH ACTIVITY.class
PLEASE GIVE ME HELP TO FIND THE PROBLEM AND TO SOLVE THE BUG,SO I CAN USE THE CALENDAR ALSO WHE LANGUAGE PHONE SETTING IS IN ITALIAN,OR FRENCH,OR ANY OTHER LANGUAGES!
Code:
package com.android.calendar;
import android.app.Activity;
import android.content.*;
import android.database.ContentObserver;
import android.os.Bundle;
import android.os.Handler;
import android.preference.PreferenceManager;
import android.text.TextUtils;
import android.text.format.*;
import android.view.*;
import android.view.animation.*;
import android.widget.*;
import com.android.iphoneview.iphoneUtils;
import java.util.*;
// Referenced classes of package com.android.calendar:
// Navigator, MonthView, Utils, AgendaActivity,
// DayActivity, CalendarPreferenceActivity, EditEvent, EventLoader,
// CalendarApplication
public class MonthActivity extends Activity
implements android.widget.ViewSwitcher.ViewFactory, Navigator, android.view.animation.Animation.AnimationListener, android.view.View.OnClickListener
{
public MonthActivity()
{
mUpdateTZ = new _cls1();
oldlines = 0;
mIntentReceiver = new _cls2();
mObserver = new _cls3(new Handler());
}
void eventsChanged()
{
((MonthView)mSwitcher.getCurrentView()).reloadEvents();
}
public boolean getAllDay()
{
return false;
}
public long getSelectedTime()
{
return ((MonthView)mSwitcher.getCurrentView()).getSelectedTimeInMillis();
}
int getStartDay()
{
return mStartDay;
}
protected ViewSwitcher getSwitcher()
{
return mSwitcher;
}
public void goTo(Time time, boolean flag)
{
updateTitle(time);
MonthView monthview = (MonthView)mSwitcher.getCurrentView();
monthview.dismissPopup();
Time time1 = monthview.getTime();
if(flag)
{
int i = time1.month + 12 * time1.year;
MonthView monthview1;
if(time.month + 12 * time.year < i)
{
mSwitcher.setInAnimation(mInAnimationPast);
mSwitcher.setOutAnimation(mOutAnimationPast);
} else
{
mSwitcher.setInAnimation(mInAnimationFuture);
mSwitcher.setOutAnimation(mOutAnimationFuture);
}
}
monthview1 = (MonthView)mSwitcher.getNextView();
monthview1.setSelectionMode(monthview.getSelectionMode());
monthview1.setSelectedTime(time);
monthview1.reloadEvents();
setListview(monthview1.minLines());
monthview1.animationStarted();
mSwitcher.showNext();
monthview1.requestFocus();
mTime = time;
}
public void goToToday()
{
Time time = new Time(Utils.getTimeZone(this, mUpdateTZ));
time.set(System.currentTimeMillis());
time.minute = 0;
time.second = 0;
time.normalize(false);
((TextView)findViewById(0x7f0d0013)).setText(iphoneUtils.formatMonthYear(time));
mTime = time;
MonthView monthview = (MonthView)mSwitcher.getCurrentView();
monthview.setSelectedTime(time);
monthview.reloadEvents();
}
public View makeView()
{
MonthView monthview = new MonthView(this, this);
monthview.setLayoutParams(new android.widget.FrameLayout.LayoutParams(-1, -1));
monthview.setSelectedTime(mTime);
return monthview;
}
public void onAnimationEnd(Animation animation)
{
((MonthView)mSwitcher.getCurrentView()).animationFinished();
}
public void onAnimationRepeat(Animation animation)
{
}
public void onAnimationStart(Animation animation)
{
}
public void onClick(View view)
{
if(!view.equals(mTabAgenda)) goto _L2; else goto _L1
_L1:
iphoneUtils.startActivity(this, com/android/calendar/AgendaActivity.getName(), getSelectedTime());
iphoneUtils.cancelAnimationAndFinishActivity(this);
_L4:
return;
_L2:
if(view.equals(mTabDay))
{
iphoneUtils.startActivity(this, com/android/calendar/DayActivity.getName(), getSelectedTime());
iphoneUtils.cancelAnimationAndFinishActivity(this);
} else
if(view.equals(mButtonSetting))
iphoneUtils.startActivity(this, com/android/calendar/CalendarPreferenceActivity.getName(), getSelectedTime());
else
if(view.equals(mButtonAddEvent))
{
long l = getSelectedTime();
long l1 = l + 0x36ee80L;
Intent intent = new Intent("android.intent.action.EDIT");
intent.setClassName(this, com/android/calendar/EditEvent.getName());
intent.putExtra("beginTime", l);
intent.putExtra("endTime", l1);
intent.putExtra("allDay", getAllDay());
startActivity(intent);
overridePendingTransition(0x7f040000, 0x7f04000d);
} else
if(view.equals(mButtonToday))
goToToday();
if(true) goto _L4; else goto _L3
_L3:
}
protected void onCreate(Bundle bundle)
{
super.onCreate(bundle);
setRequestedOrientation(1);
setContentView(0x7f030019);
mContentResolver = getContentResolver();
long l;
int i;
String s;
String s1;
String s2;
String s3;
String s4;
String s5;
String s6;
if(bundle != null)
l = bundle.getLong("beginTime");
else
l = iphoneUtils.timeFromIntentInMillis(getIntent());
mTime = new Time(Utils.getTimeZone(this, mUpdateTZ));
mTime.set(l);
mTime.normalize(true);
mStartDay = Calendar.getInstance().getFirstDayOfWeek();
i = mStartDay - 1 - 1;
s = DateUtils.getDayOfWeekString(1 + (i + 1) % 7, 20);
((TextView)findViewById(0x7f0d00a7)).setText(s);
s1 = DateUtils.getDayOfWeekString(1 + (i + 2) % 7, 20);
((TextView)findViewById(0x7f0d00a8)).setText(s1);
s2 = DateUtils.getDayOfWeekString(1 + (i + 3) % 7, 20);
((TextView)findViewById(0x7f0d00a9)).setText(s2);
s3 = DateUtils.getDayOfWeekString(1 + (i + 4) % 7, 20);
((TextView)findViewById(0x7f0d00aa)).setText(s3);
s4 = DateUtils.getDayOfWeekString(1 + (i + 5) % 7, 20);
((TextView)findViewById(0x7f0d00ab)).setText(s4);
s5 = DateUtils.getDayOfWeekString(1 + (i + 6) % 7, 20);
((TextView)findViewById(0x7f0d00ac)).setText(s5);
s6 = DateUtils.getDayOfWeekString(1 + (i + 7) % 7, 20);
((TextView)findViewById(0x7f0d00ad)).setText(s6);
((TextView)findViewById(0x7f0d0013)).setText(iphoneUtils.formatMonthYear(mTime));
mEventLoader = new EventLoader(this);
mProgressBar = (ProgressBar)findViewById(0x7f0d0033);
mSwitcher = (ViewSwitcher)findViewById(0x7f0d0034);
mSwitcher.setFactory(this);
mSwitcher.getCurrentView().requestFocus();
mInAnimationPast = AnimationUtils.loadAnimation(this, 0x7f040004);
mOutAnimationPast = AnimationUtils.loadAnimation(this, 0x7f040005);
mInAnimationFuture = AnimationUtils.loadAnimation(this, 0x7f04000a);
mOutAnimationFuture = AnimationUtils.loadAnimation(this, 0x7f04000b);
mInAnimationPast.setAnimationListener(this);
mInAnimationFuture.setAnimationListener(this);
ll = (LinearLayout)findViewById(0x7f0d00ae);
mTabAgenda = (TextView)findViewById(0x7f0d000d);
mTabAgenda.setOnClickListener(this);
mTabDay = (TextView)findViewById(0x7f0d000e);
mTabDay.setOnClickListener(this);
mButtonSetting = (Button)findViewById(0x7f0d0002);
mButtonSetting.setOnClickListener(this);
mButtonAddEvent = (Button)findViewById(0x7f0d0004);
mButtonAddEvent.setOnClickListener(this);
mButtonToday = (Button)findViewById(0x7f0d000c);
mButtonToday.setOnClickListener(this);
}
public boolean onCreateOptionsMenu(Menu menu)
{
return super.onCreateOptionsMenu(menu);
}
protected void onNewIntent(Intent intent)
{
long l = iphoneUtils.timeFromIntentInMillis(intent);
if(l > 0L)
{
Time time = new Time(Utils.getTimeZone(this, mUpdateTZ));
time.set(l);
goTo(time, false);
}
}
public boolean onOptionsItemSelected(MenuItem menuitem)
{
return super.onOptionsItemSelected(menuitem);
}
protected void onPause()
{
super.onPause();
if(isFinishing())
mEventLoader.stopBackgroundThread();
mContentResolver.unregisterContentObserver(mObserver);
unregisterReceiver(mIntentReceiver);
((MonthView)mSwitcher.getCurrentView()).dismissPopup();
((MonthView)mSwitcher.getNextView()).dismissPopup();
mEventLoader.stopBackgroundThread();
CalendarApplication.setDefaultView(this, 0);
}
public boolean onPrepareOptionsMenu(Menu menu)
{
return super.onPrepareOptionsMenu(menu);
}
protected void onResume()
{
super.onResume();
mUpdateTZ.run();
mEventLoader.startBackgroundThread();
eventsChanged();
MonthView monthview = (MonthView)mSwitcher.getCurrentView();
MonthView monthview1 = (MonthView)mSwitcher.getNextView();
String s = PreferenceManager.getDefaultSharedPreferences(this).getString("preferredDetailedView", CalendarPreferenceActivity.DEFAULT_DETAILED_VIEW);
monthview.updateView();
monthview1.updateView();
monthview.setDetailedView(s);
monthview1.setDetailedView(s);
IntentFilter intentfilter = new IntentFilter();
intentfilter.addAction("android.intent.action.TIME_SET");
intentfilter.addAction("android.intent.action.DATE_CHANGED");
intentfilter.addAction("android.intent.action.TIMEZONE_CHANGED");
registerReceiver(mIntentReceiver, intentfilter);
setListview(monthview.minLines());
mContentResolver.registerContentObserver(android.provider.Calendar.Events.CONTENT_URI, true, mObserver);
}
protected void onSaveInstanceState(Bundle bundle)
{
super.onSaveInstanceState(bundle);
bundle.putLong("beginTime", mTime.toMillis(true));
}
public void setListview(int i)
{
lp = (android.widget.RelativeLayout.LayoutParams)ll.getLayoutParams();
newHeight = 110;
if(oldlines == i) goto _L2; else goto _L1
_L1:
if(i != 4) goto _L4; else goto _L3
_L3:
newHeight = 290;
_L6:
lp.height = newHeight;
if(oldHeight != 0)
{
TranslateAnimation translateanimation = new TranslateAnimation(0.0F, 0.0F, newHeight - oldHeight, 0.0F);
translateanimation.setDuration(400L);
ll.startAnimation(translateanimation);
}
oldlines = i;
oldHeight = newHeight;
_L2:
return;
_L4:
if(i == 5)
newHeight = 200;
else
if(i == 6)
newHeight = 110;
if(true) goto _L6; else goto _L5
_L5:
}
protected void startProgressSpinner()
{
mProgressBar.setVisibility(0);
}
protected void stopProgressSpinner()
{
mProgressBar.setVisibility(8);
}
public void updateTitle(Time time)
{
TextView textview = (TextView)findViewById(0x7f0d0013);
StringBuffer stringbuffer = new StringBuffer(iphoneUtils.formatMonthYear(time));
if(!TextUtils.equals(Utils.getTimeZone(this, mUpdateTZ), Time.getCurrentTimezone()))
{
int i = 1;
if(DateFormat.is24HourFormat(this))
i |= 0x80;
long l = System.currentTimeMillis();
String s = Utils.getTimeZone(this, mUpdateTZ);
boolean flag;
TimeZone timezone;
if(time.isDst != 0)
flag = true;
else
flag = false;
timezone = TimeZone.getTimeZone(s);
stringbuffer.append(" (").append(Utils.formatDateRange(this, l, l, i)).append(" ").append(timezone.getDisplayName(flag, 0, Locale.getDefault())).append(")");
}
textview.setText(stringbuffer.toString());
}
private static final boolean DEBUG = true;
private static final int INITIAL_HEAP_SIZE = 0x400000;
private static final String TAG = "MonthActivity";
private LinearLayout ll;
private android.widget.RelativeLayout.LayoutParams lp;
private Button mButtonAddEvent;
private Button mButtonSetting;
private Button mButtonToday;
private ContentResolver mContentResolver;
EventLoader mEventLoader;
private Animation mInAnimationFuture;
private Animation mInAnimationPast;
private BroadcastReceiver mIntentReceiver;
private ContentObserver mObserver;
private Animation mOutAnimationFuture;
private Animation mOutAnimationPast;
private ProgressBar mProgressBar;
private int mStartDay;
private ViewSwitcher mSwitcher;
private TextView mTabAgenda;
private TextView mTabDay;
private Time mTime;
private Runnable mUpdateTZ;
private int newHeight;
private int oldHeight;
private int oldlines;
private class _cls1
implements Runnable
{
public void run()
{
mTime.timezone = Utils.getTimeZone(MonthActivity.this, this);
mTime.normalize(true);
updateTitle(mTime);
}
final MonthActivity this$0;
_cls1()
{
this$0 = MonthActivity.this;
super();
}
}
private class _cls2 extends BroadcastReceiver
{
public void onReceive(Context context, Intent intent)
{
String s = intent.getAction();
if(s.equals("android.intent.action.TIME_SET") || s.equals("android.intent.action.DATE_CHANGED") || s.equals("android.intent.action.TIMEZONE_CHANGED"))
eventsChanged();
}
final MonthActivity this$0;
_cls2()
{
this$0 = MonthActivity.this;
super();
}
}
private class _cls3 extends ContentObserver
{
public boolean deliverSelfNotifications()
{
return true;
}
public void onChange(boolean flag)
{
eventsChanged();
}
final MonthActivity this$0;
_cls3(Handler handler)
{
this$0 = MonthActivity.this;
super(handler);
}
}
}
UP:crying: :crying: :crying: :crying: :crying: :crying:
Hello.
I would like to make a very simple Android app, with no UI. Kind of a shortcut. I tried searching the web, and I didn't find what I was looking for.
The question is: Can I make a simple app, that only launches an activity?
I want to make an app to launch the following activity : "com.cyanogenmod.trebuchet.preference.Preferences". Kind of how the app "QuickShortcutMaker" works.
Thanks in advance for future answers.
I haven't much experience on android developer, but I think that this can do what you want.
Start a new project with an empty activity and put this inside the activity.java file:
Code:
public class MainActivity extends Activity{
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
PackageManager pm = getPackageManager();
Intent intent = pm.getLaunchIntentForPackage("com.cyanogenmod.trebuchet.preference.Preferences");
startActivity(intent);
finish();
}
}
dancer_69 said:
I haven't much experience on android developer, but I think that this can do what you want.
Start a new project with an empty activity and put this inside the activity.java file:
Code:
public class MainActivity extends Activity{
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
PackageManager pm = getPackageManager();
Intent intent = pm.getLaunchIntentForPackage("com.cyanogenmod.trebuchet.preference.Preferences");
startActivity(intent);
finish();
}
}
Click to expand...
Click to collapse
Thanks a lot for your help!
This line is giving me an error upon debug:
Code:
Intent intent = pm.getLaunchIntentForPackage("com.cyanogenmod.trebuchet.preference.Preferences");
The commands 'Intent intent" and "PackageManager" are not recognized. Eclipse suggests changing them, importing them, or creating a class. What should I do?
This is the logcat:
Code:
I/ActivityManager( 524): START u0 {act=android.intent.action.MAIN cat=[android.
intent.category.LAUNCHER] flg=0x10200000 cmp=com.AB.launchersettings/.MainActivi
ty} from pid 876
D/ALSAModule( 175): setHardwareParams: reqBuffSize 1024 channels 2 sampleRate 4
8000
D/ALSAModule( 175): setHardwareParams: buffer_size 2048, period_size 1024, peri
od_cnt 2
D/dalvikvm(26747): Late-enabling CheckJNI
I/ActivityManager( 524): Start proc com.AB.launchersettings for activity com.AB
.launchersettings/.MainActivity: pid=26747 uid=10046 gids={50046, 1028}
D/overlay ( 172): FROM_STATE = OV_BYPASS_3_LAYER TO_STATE = OV_CLOSED
E/Trace (26747): error opening trace file: No such file or directory (2)
D/AndroidRuntime(26747): Shutting down VM
W/dalvikvm(26747): threadid=1: thread exiting with uncaught exception (group=0x4
0a4a888)
E/AndroidRuntime(26747): FATAL EXCEPTION: main
E/AndroidRuntime(26747): java.lang.RuntimeException: Unable to start activity Co
mponentInfo{com.AB.launchersettings/com.AB.launchersettings.MainActivity}: java.
lang.NullPointerException
E/AndroidRuntime(26747): at android.app.ActivityThread.performLaunchActiv
ity(ActivityThread.java:2307)
E/AndroidRuntime(26747): at android.app.ActivityThread.handleLaunchActivi
ty(ActivityThread.java:2357)
E/AndroidRuntime(26747): at android.app.ActivityThread.access$600(Activit
yThread.java:153)
E/AndroidRuntime(26747): at android.app.ActivityThread$H.handleMessage(Ac
tivityThread.java:1247)
E/AndroidRuntime(26747): at android.os.Handler.dispatchMessage(Handler.ja
va:99)
E/AndroidRuntime(26747): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(26747): at android.app.ActivityThread.main(ActivityThrea
d.java:5231)
E/AndroidRuntime(26747): at java.lang.reflect.Method.invokeNative(Native
Method)
E/AndroidRuntime(26747): at java.lang.reflect.Method.invoke(Method.java:5
11)
E/AndroidRuntime(26747): at com.android.internal.os.ZygoteInit$MethodAndA
rgsCaller.run(ZygoteInit.java:794)
E/AndroidRuntime(26747): at com.android.internal.os.ZygoteInit.main(Zygot
eInit.java:561)
E/AndroidRuntime(26747): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(26747): Caused by: java.lang.NullPointerException
E/AndroidRuntime(26747): at android.app.Instrumentation.execStartActivity
(Instrumentation.java:1410)
E/AndroidRuntime(26747): at android.app.Activity.startActivityForResult(A
ctivity.java:3376)
E/AndroidRuntime(26747): at android.app.Activity.startActivityForResult(A
ctivity.java:3337)
E/AndroidRuntime(26747): at android.app.Activity.startActivity(Activity.j
ava:3572)
E/AndroidRuntime(26747): at android.app.Activity.startActivity(Activity.j
ava:3540)
E/AndroidRuntime(26747): at com.AB.launchersettings.MainActivity.onCreate
(MainActivity.java:16)
E/AndroidRuntime(26747): at android.app.Activity.performCreate(Activity.j
ava:5110)
E/AndroidRuntime(26747): at android.app.Instrumentation.callActivityOnCre
ate(Instrumentation.java:1080)
E/AndroidRuntime(26747): at android.app.ActivityThread.performLaunchActiv
ity(ActivityThread.java:2261)
E/AndroidRuntime(26747): ... 11 more
W/ActivityManager( 524): Force finishing activity com.AB.launchersettings/.Ma
inActivity
D/dalvikvm( 524): GC_FOR_ALLOC freed 1154K, 23% free 26363K/33812K, paused 86ms
, total 86ms
W/BackupManagerService( 524): dataChanged but no participant pkg='com.android.p
roviders.settings' uid=10031
W/ActivityManager( 524): Activity pause timeout for ActivityRecord{40cbfcc8 u0
com.AB.launchersettings/.MainActivity}
D/alsa_ucm( 175): snd_use_case_set(): uc_mgr 0x2a0092a0 identifier _verb value
Inactive
D/alsa_ucm( 175): Set mixer controls for HiFi Lowlatency enable 0
D/alsa_ucm( 175): snd_use_case_set(): uc_mgr 0x2a0092a0 identifier _disdev valu
e Speaker
D/alsa_ucm( 175): Set mixer controls for Speaker enable 0
W/ActivityManager( 524): Activity destroy timeout for ActivityRecord{40cbfcc8 u
0 com.AB.launchersettings/.MainActivity}
What I did:
Created a new project ( Filled up the name, icon and stuff)
Went straight to MainActivity.java, and put what you gave me in it.
Debugged the app by installing it on my Nexus 4.
Import them.
EDIT:
Seems that the above code doesn't work. So replace all content on your activity, except the first line(com... what you have as name) with this:
Code:
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
public class MainActivity extends Activity{
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = new Intent();
intent.setClassName("com.cyanogenmod.trebuchet", "com.cyanogenmod.trebuchet.preference.Preferences");
startActivity(intent);
finish();
}
}
dancer_69 said:
Import them.
EDIT:
Seems that the above code doesn't work. So replace all content on your activity, except the first line(com... what you have as name) with this:
Code:
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
public class MainActivity extends Activity{
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = new Intent();
intent.setClassName("com.cyanogenmod.trebuchet", "com.cyanogenmod.trebuchet.preference.Preferences");
startActivity(intent);
finish();
}
}
Click to expand...
Click to collapse
This worked. Thanks a lot!!
Hi guys,
I have some problems with Snapchat, not taking a picture but making a clip,
When I hold it the app freezes, and then fc and then my camera doesn't work (for all camera apps), until
I reboot. I only get this when I am on a custom Rom. I don't know how to take a logcat.
I tried other kernel, Dorimanx, but still doesn't work
Device info:
Device: Samsung Galaxy S2 GT-i9100
Rom: SlimBean unofficial A.K.A SlimSaber from FusionJack (4.3.1)
Kernel: Stock
anybody?
here is a logcat:
11-04 12:28:37.640 I/SELinuxMMAC(2205): package (com.snapchat.android) installed with seinfo=default
11-04 12:29:00.910 I/ActivityManager(2205): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.snapchat.android/.LandingPageActivity bnds=[14,488][97,581]} from pid 2659
11-04 12:29:00.945 I/ActivityManager(2205): Start proc com.snapchat.android for activity com.snapchat.android/.LandingPageActivity: pid=3532 uid=10059 gids={50059, 3003, 1015, 1023, 1006, 1028}
11-04 12:45:50.348 I/ActivityManager(2205): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.snapchat.android/.LandingPageActivity bnds=[14,488][97,581]} from pid 2659
11-04 12:48:32.813 I/ActivityManager(2205): Force stopping package com.snapchat.android appid=10059 user=0
11-04 12:48:32.818 I/ActivityManager(2205): Killing proc 3532:com.snapchat.android/u0a10059: force stop com.snapchat.android
11-04 12:48:32.818 W/ActivityManager(2205): Force removing ActivityRecord{42289c58 u0 com.snapchat.android/.LandingPageActivity}: app died, no saved state
11-04 12:48:32.933 W/WindowManager(2205): This window was lost: Window{422a0a60 u0 com.snapchat.android/com.snapchat.android.LandingPageActivity}
11-04 12:48:32.933 W/WindowManager(2205): mOwnerUid=10059 mShowToOwnerOnly=true package=com.snapchat.android appop=NONE
11-04 12:48:32.933 W/WindowManager(2205): mToken=AppWindowToken{42460ca0 token=Token{42297200 ActivityRecord{42289c58 u0 com.snapchat.android/.LandingPageActivity}}}
11-04 12:48:32.933 W/WindowManager(2205): mRootToken=AppWindowToken{42460ca0 token=Token{42297200 ActivityRecord{42289c58 u0 com.snapchat.android/.LandingPageActivity}}}
11-04 12:48:32.933 W/WindowManager(2205): mAppToken=AppWindowToken{42460ca0 token=Token{42297200 ActivityRecord{42289c58 u0 com.snapchat.android/.LandingPageActivity}}}
11-04 12:48:32.933 W/WindowManager(2205): WindowStateAnimator{426e3fe0 com.snapchat.android/com.snapchat.android.LandingPageActivity}:
11-04 12:48:32.933 W/WindowManager(2205): mSurface=Surface(name=com.snapchat.android/com.snapchat.android.LandingPageActivity)
11-04 12:48:32.973 I/WindowState(2205): WIN DEATH: Window{422a0a60 u0 com.snapchat.android/com.snapchat.android.LandingPageActivity}
11-04 20:12:21.348 I/ActivityManager(2205): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.snapchat.android/.LandingPageActivity bnds=[14,488][97,581]} from pid 2659
11-04 20:12:21.568 I/ActivityManager(2205): Start proc com.snapchat.android for activity com.snapchat.android/.LandingPageActivity: pid=10321 uid=10059 gids={50059, 3003, 1015, 1023, 1006, 1028}
11-04 20:12:30.378 D/dalvikvm(10321): Trying to load lib /data/app-lib/com.snapchat.android-1/libphotoeffect.so 0x421b7430
11-04 20:12:30.383 D/dalvikvm(10321): Added shared lib /data/app-lib/com.snapchat.android-1/libphotoeffect.so 0x421b7430
11-04 20:12:59.663 W/GTalkService(2560): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.snapchat.android (has extras) }
11-04 20:33:32.603 I/ActivityManager(2205): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.snapchat.android/.LandingPageActivity bnds=[14,488][97,581]} from pid 2659
11-04 20:33:33.828 I/ActivityManager(2205): Displayed com.snapchat.android/.LandingPageActivity: +1s208ms
11-04 20:34:07.863 W/GTalkService(2560): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.snapchat.android (has extras) }
11-04 20:34:45.113 W/GTalkService(2560): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.snapchat.android (has extras) }
11-04 20:42:49.003 W/GTalkService(2560): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.snapchat.android (has extras) }
11-04 20:46:44.743 I/InputDispatcher(2205): Application is not responding: Window{4234ace0 u0 com.snapchat.android/com.snapchat.android.LandingPageActivity}. It has been 5005.2ms since event, 5004.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
11-04 20:46:44.743 I/WindowManager(2205): Input event dispatching timed out sending to com.snapchat.android/com.snapchat.android.LandingPageActivity
11-04 20:46:46.078 E/ActivityManager(2205): ANR in com.snapchat.android (com.snapchat.android/.LandingPageActivity)
11-04 20:46:46.078 E/ActivityManager(2205): 6.8% 10321/com.snapchat.android: 5.2% user + 1.6% kernel / faults: 197 minor
11-04 20:46:46.078 E/ActivityManager(2205): 1.3% 10321/com.snapchat.android: 0% user + 1.3% kernel
11-04 20:46:46.198 I/DEBUG (1850): pid: 10321, tid: 10321, name: napchat.android >>> com.snapchat.android <<<
11-04 20:46:48.353 W/ActivityManager(2205): Force finishing activity com.snapchat.android/.LandingPageActivity
11-04 20:46:48.378 W/ActivityManager(2205): Force finishing activity com.snapchat.android/.LandingPageActivity
11-04 20:46:48.378 W/ActivityManager(2205): Duplicate finish request for ActivityRecord{422d6ed0 u0 com.snapchat.android/.LandingPageActivity}
11-04 20:46:48.543 W/InputDispatcher(2205): channel '4234ace0 com.snapchat.android/com.snapchat.android.LandingPageActivity (server)' ~ Consumer closed input channel or an error occurred. events=0xd
11-04 20:46:48.543 E/InputDispatcher(2205): channel '4234ace0 com.snapchat.android/com.snapchat.android.LandingPageActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
11-04 20:46:48.548 I/ActivityManager(2205): Process com.snapchat.android (pid 10321) has died.
11-04 20:46:48.553 W/InputDispatcher(2205): Attempted to unregister already unregistered input channel '4234ace0 com.snapchat.android/com.snapchat.android.LandingPageActivity (server)'
11-04 20:46:48.553 I/WindowState(2205): WIN DEATH: Window{4234ace0 u0 com.snapchat.android/com.snapchat.android.LandingPageActivity}
I got the same problem with certain roms, it's got something to do with the navigation bar, if your room allows for you to have one and you have it emabled then that's most likely the problem, you can enable expanded desktop on your power menu and just enable it whenever you use it, another option would be if your rom has settings to do per app dpi then most likely you can do per app enable/disable navigation bar, my current rom does not have that option, I've come to like my rom a lot and that is the only downside, I'm searching for a way to do per app enable/disable navigation bar perhaps thru an exposed module but haven't had any luck finding anything, I like my nav bar but I find it annoying having to switch my expanded desktop on and off whenever I use snapchat, well good luck hope I was of some help
As @gothikzoul said, it seems like a problem that occurs with certain roms, you can try another rom or try the workaround he mentioned, you can also report the bug to the rom dev with your logcat.
Dakura said:
As @gothikzoul said, it seems like a problem that occurs with certain roms, you can try another rom or try the workaround he mentioned, you can also report the bug to the rom dev with your logcat.
Click to expand...
Click to collapse
already did send a logcat, i love SlimSaber by FusionJack I don't want to go a other rom so ya :silly:
anyway thnx for the response guys :highfive: @Dakura why aren't you a Forum admin you are very active and helpfull
After working flawlessly ever since I bought it, my tethering hotspot stopped working. When switching it on (wifi hotspot) the icon appears but no other devices can see it.
Any comments/suggestions in order to fix this will be appreciated - hope it is not a hardware issue...
below the output from logcat, when I enable wifi hotspot:
Code:
07-04 11:58:47.434 2236 2264 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state (No such file or directory)
07-04 11:58:47.438 2541 2541 D KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED
07-04 11:58:47.447 2236 2264 E BatteryStatsService: modem info is invalid: ModemActivityInfo{ mTimestamp=0 mSleepTimeMs=0 mIdleTimeMs=0 mTxTimeMs[]=[0, 0, 0, 0, 0] mRxTimeMs=0 mEnergyUsed=0}
07-04 11:58:47.449 2236 2261 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state (No such file or directory)
07-04 11:58:47.450 2541 2541 D KeyguardUpdateMonitor: handleBatteryUpdate
07-04 11:58:48.383 2236 2458 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },9]
07-04 11:58:48.384 2236 2458 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },3]
07-04 11:58:48.386 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:58:48.387 741 2256 D SoftapController: Stopping the SoftAP service...
07-04 11:58:48.387 2775 2775 D TransmitPowerReceiver: Old PowerLevel: 4, current PowerLevel: 6
07-04 11:58:48.387 2775 2775 D TransmitPowerReceiver: Setting transmit power to 6
07-04 11:58:48.390 741 2256 D SoftapController: SoftAP stopped successfully
07-04 11:58:48.429 2236 2259 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:58:48.892 2236 2458 E NetdConnector: NDC Command {585 softap stopap} took too long (508ms)
07-04 11:58:48.895 741 2256 D SoftapController: Softap fwReload - Ok
07-04 11:58:48.897 2236 2458 D SoftApManager: Soft AP is stopped
07-04 11:58:48.898 2236 2458 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },9]
07-04 11:58:48.898 2236 2458 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },3]
07-04 11:58:48.900 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:58:48.902 2775 2775 D TransmitPowerReceiver: Old PowerLevel: 6, current PowerLevel: 6
07-04 11:58:48.909 17706 17706 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1357 android.content.ContextWrapper.startService:613 android.content.ContextWrapper.startService:613 com.android.settings.TetherService.cancelRecheckAlarmIfNecessary:301 com.android.settings.HotspotOffReceiver.onReceive:29
07-04 11:58:48.912 2236 12018 D ActivityManager: SystemUid, not FirstBoot, not Upgrade, use SERVICE_TIMEOUT
07-04 11:58:48.937 2236 2796 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:58:49.107 2236 2458 D WifiNative-HAL: Failing getSupportedFeatureset because HAL isn't started
07-04 11:58:49.109 2236 2264 E BatteryStatsService: no controller energy info supplied
07-04 11:58:49.119 2236 2264 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state (No such file or directory)
07-04 11:58:50.764 2236 3449 I ActivityManager: START u0 {act=android.settings.SETTINGS flg=0x14000000 cmp=com.android.settings/.Settings} from uid 10082 on display 0
07-04 11:58:50.768 2236 3449 D ActivityTrigger: ActivityTrigger activityPauseTrigger
07-04 11:58:50.797 2236 12024 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) },1]
07-04 11:58:50.797 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) }]
07-04 11:58:50.817 17706 17706 I Lte4GEnabler: get preferred network type=9
07-04 11:58:50.817 17706 17706 I Lte4GEnabler: isDdsSubInLteMode: true
07-04 11:58:50.818 17706 17706 W Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
07-04 11:58:50.819 17706 26820 D Index : Indexing locale 'en_ZA' took 8 millis
07-04 11:58:50.821 17706 17706 I Lte4GEnabler: isThereSimReady: true
07-04 11:58:50.823 2236 3495 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) },1]
07-04 11:58:50.823 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.intent.action.SIM_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:58:50.833 2236 2259 I InputDispatcher: Focus entered window: Window{a0a9512 u0 com.android.settings/com.android.settings.Settings}
07-04 11:58:50.843 17706 17706 D DashboardSummary: Received ACTION_SIM_STATE_CHANGED or ACTION_AIRPLANE_MODE_CHANGED
07-04 11:58:50.843 17706 17706 D DashboardSummary: onConditionsChanged
07-04 11:58:50.865 17706 26820 D Index : Indexing locale 'en_ZA' took 8 millis
07-04 11:58:50.874 17706 17706 I Timeline: Timeline: Activity_idle id: [email protected] time:13151803
07-04 11:58:51.010 2236 2268 I Timeline: Timeline: Activity_windows_visible id: ActivityRecord{ca0e911 u0 com.android.settings/.Settings t9082} time:13151936 diff:237 start:warm|top-activity batt:10|2 mw:off|1 mem:825116|0|72|11|18 cpu:[1555200, 1555200, 1555200, 1555200, 0, 0, 0, 1958400]
07-04 11:58:51.271 2236 3473 I ActivityManager: Setting hasTopUi=false for pid=2541
07-04 11:58:51.274 2541 2541 D PhoneStatusBar: disable: < expand icons* alerts system_info* back home recent clock search quick_settings >
07-04 11:58:52.606 975 975 I MSM-irqbalance: Decided to move IRQ48 from CPU2 to CPU3
07-04 11:58:52.866 2236 3484 I ActivityManager: START u0 {flg=0x8000 cmp=com.android.settings/.Settings$WirelessSettingsActivity (has extras)} from uid 1000 on display 0
07-04 11:58:52.875 2236 3484 D ActivityTrigger: ActivityTrigger activityPauseTrigger
07-04 11:58:52.926 17706 26820 E ActivityThread: Failed to find provider info for com.qti.smq.qualcommFeedback.provider
07-04 11:58:52.939 17706 17706 D WirelessSettings: onCreate: mManageMobilePlanMessage=null
07-04 11:58:52.941 2236 12014 E UserRestrictionsUtils: Unknown restriction: null
07-04 11:58:52.947 2236 3435 E UserRestrictionsUtils: Unknown restriction: null
07-04 11:58:52.948 3458 3651 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1421 android.content.ContextWrapper.bindService:636 com.google.android.gms.ads.identifier.AdvertisingIdClient.h:-1 com.google.android.gms.ads.identifier.AdvertisingIdClient.b:-1 com.google.android.gms.ads.identifier.AdvertisingIdClient.getAdvertisingIdInfo:-1
07-04 11:58:53.000 17706 17706 E SomcPreferences: Removing targetKey=cell_broadcast_settings, targetParentKey=null failed.
07-04 11:58:53.003 2236 2803 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) },1]
07-04 11:58:53.003 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) }]
07-04 11:58:53.015 17706 26807 D Index : Indexing locale 'en_ZA' took 6 millis
07-04 11:58:53.015 2236 2707 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.intent.action.SERVICE_STATE flg=0x10 (has extras) },1]
07-04 11:58:53.016 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.intent.action.SERVICE_STATE flg=0x10 (has extras) }]
07-04 11:58:53.024 17706 17706 D WirelessSettings: WFC not supported. Remove WFC menu
07-04 11:58:53.032 17706 26807 D Index : Indexing locale 'en_ZA' took 7 millis
07-04 11:58:53.041 2236 12015 I InputDispatcher: Focus entered window: Window{6fe3f90 u0 com.android.settings/com.android.settings.Settings$WirelessSettingsActivity}
07-04 11:58:53.145 2236 2268 I ActivityManager: Displayed com.android.settings/.Settings$WirelessSettingsActivity: +259ms (total +37s640ms)
07-04 11:58:53.179 17706 18227 D OpenGLRenderer: endAllActiveAnimators on 0x7f5ee32000 (RippleDrawable) with handle 0x7f59cc9980
07-04 11:58:53.184 17706 17706 I Timeline: Timeline: Activity_idle id: [email protected] time:13154112
07-04 11:58:53.305 2236 2268 I Timeline: Timeline: Activity_windows_visible id: ActivityRecord{9b72765 u0 com.android.settings/.Settings$WirelessSettingsActivity t9082} time:13154229 diff:426 start:lukewarm|top-activity batt:10|2 mw:off|1 mem:831084|0|72|11|18 cpu:[1555200, 1555200, 1555200, 1555200, 0, 0, 0, 1958400]
07-04 11:58:53.305 2236 2261 D ActivityTrigger: ActivityTrigger activityStopTrigger
07-04 11:58:54.592 17706 17706 D WirelessSettings: onPreferenceTreeClick: preference=Tethering & portable hotspot
07-04 11:58:54.592 17706 17706 I Timeline: Timeline: Activity_launch_request id:com.android.settings time:13155520
07-04 11:58:54.596 2236 3176 I ActivityManager: START u0 {act=android.intent.action.MAIN cmp=com.android.settings/.SubSettings (has extras)} from uid 1000 on display 0
07-04 11:58:54.606 2236 3176 D ActivityTrigger: ActivityTrigger activityPauseTrigger
07-04 11:58:54.664 17706 26820 E ActivityThread: Failed to find provider info for com.qti.smq.qualcommFeedback.provider
07-04 11:58:54.670 17706 17706 D SubSettings: Launching fragment com.android.settings.TetherSettings
07-04 11:58:54.676 2236 2267 D BluetoothManagerService: Message: 30
07-04 11:58:54.716 2236 2259 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) },1]
07-04 11:58:54.717 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.intent.action.BATTERY_CHANGED flg=0x60000010 (has extras) }]
07-04 11:58:54.731 2236 3176 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },1]
07-04 11:58:54.731 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:58:54.731 2236 12023 I BroadcastQueue: am_broadcast_enqueue: [foreground,0,Intent { act=android.hardware.usb.action.USB_STATE flg=0x30000010 (has extras) },1]
07-04 11:58:54.732 2236 2261 I BroadcastQueue: am_broadcast_finished: [foreground,0,Intent { act=android.hardware.usb.action.USB_STATE flg=0x30000010 (has extras) }]
07-04 11:58:54.735 17706 26806 D Index : Indexing locale 'en_ZA' took 11 millis
07-04 11:58:54.738 2236 2803 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },1]
07-04 11:58:54.743 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:58:54.760 17706 26806 D Index : Indexing locale 'en_ZA' took 6 millis
07-04 11:58:54.768 2236 3174 I InputDispatcher: Focus entered window: Window{ffdcaa1 u0 com.android.settings/com.android.settings.SubSettings}
07-04 11:58:54.859 2236 2268 I ActivityManager: Displayed com.android.settings/.SubSettings: +238ms
07-04 11:58:54.906 17706 18227 D OpenGLRenderer: endAllActiveAnimators on 0x7f5996b000 (RippleDrawable) with handle 0x7f59c17920
07-04 11:58:54.912 17706 17706 I Timeline: Timeline: Activity_idle id: [email protected] time:13155841
07-04 11:58:55.008 2236 2268 I Timeline: Timeline: Activity_windows_visible id: ActivityRecord{6c4df9a u0 com.android.settings/.SubSettings t9082} time:13155934 diff:399 start:lukewarm|top-activity batt:10|2 mw:off|1 mem:829396|0|72|11|18 cpu:[1555200, 1555200, 1555200, 1555200, 0, 0, 0, 1958400]
07-04 11:58:55.009 2236 2261 D ActivityTrigger: ActivityTrigger activityStopTrigger
07-04 11:58:57.623 975 975 I MSM-irqbalance: Decided to move IRQ215 from CPU0 to CPU3
07-04 11:59:00.002 2236 2431 I BroadcastQueue: am_broadcast_enqueue: [foreground,1,Intent { act=android.intent.action.TIME_TICK flg=0x50000014 (has extras) },17]
07-04 11:59:00.007 2541 2541 D KeyguardUpdateMonitor: received broadcast android.intent.action.TIME_TICK
07-04 11:59:00.007 2541 2541 D KeyguardUpdateMonitor: handleTimeUpdate
07-04 11:59:00.135 2236 2258 I BroadcastQueue: am_broadcast_finished: [foreground,1,Intent { act=android.intent.action.TIME_TICK flg=0x50000014 (has extras) }]
07-04 11:59:01.383 17706 17706 I Timeline: Timeline: Activity_launch_request id:com.android.settings time:13162311
07-04 11:59:01.386 2236 2516 I ActivityManager: START u0 {cmp=com.android.settings/com.sonymobile.settings.TetherConfirmationDialog (has extras)} from uid 1000 on display 0
07-04 11:59:01.392 2236 2516 D ActivityTrigger: ActivityTrigger activityPauseTrigger
07-04 11:59:01.430 2236 2803 I InputDispatcher: Focus entered window: Window{ffdcaa1 u0 com.android.settings/com.android.settings.SubSettings}
07-04 11:59:01.432 2236 2803 D ActivityTrigger: ActivityTrigger activityPauseTrigger
07-04 11:59:01.444 2236 3435 W InputMethodManagerService: Window already focused, ignoring focus gain of: [email protected] attribute=null, token = [email protected]
07-04 11:59:01.477 741 2256 D SoftapController: Softap fwReload - Ok
07-04 11:59:01.481 2236 2458 E wifi : Could not read interface wlan0 flags: 19
07-04 11:59:01.481 2236 2458 E WifiNative-HAL: Could not start hal
07-04 11:59:01.481 2236 2458 E WifiStateMachine: Failed to start HAL
07-04 11:59:01.485 2236 2458 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },11]
07-04 11:59:01.485 2236 2458 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },3]
07-04 11:59:01.486 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:59:01.488 2775 2775 D TransmitPowerReceiver: Old PowerLevel: 6, current PowerLevel: 6
07-04 11:59:01.510 741 2256 D SoftapController: SoftAP started successfully
07-04 11:59:01.533 17706 17717 I art : Background sticky concurrent mark sweep GC freed 7737(555KB) AllocSpace objects, 0(0B) LOS objects, 3% free, 17MB/18MB, paused 8.999ms total 44.028ms
07-04 11:59:01.536 2236 12014 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:59:01.540 26826 26826 E hostapd : Configuration file: /data/misc/wifi/hostapd.conf
07-04 11:59:01.541 26826 26826 E hostapd : Could not read interface wlan0 flags: No such device
07-04 11:59:01.541 26826 26826 I hostapd : nl80211: Driver does not support authentication/association or connect commands
07-04 11:59:01.541 26826 26826 I hostapd : nl80211: deinit ifname=wlan0 disabled_11b_rates=0
07-04 11:59:01.541 17706 17706 I Timeline: Timeline: Activity_idle id: [email protected] time:13162469
07-04 11:59:01.541 26826 26826 E hostapd : Could not read interface wlan0 flags: No such device
07-04 11:59:01.541 26826 26826 E hostapd : nl80211 driver initialization failed.
07-04 11:59:01.541 26826 26826 I hostapd : wlan0: interface state UNINITIALIZED->DISABLED
07-04 11:59:01.541 26826 26826 I hostapd : wlan0: AP-DISABLED
07-04 11:59:01.541 26826 26826 I hostapd : wlan0: CTRL-EVENT-TERMINATING
07-04 11:59:01.541 26826 26826 E hostapd : hostapd_free_hapd_data: Interface wlan0 wasn't started
07-04 11:59:01.586 2236 2431 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=com.google.android.location.reporting.collectors.ULR_BAROMETER_READ_ALARM flg=0x14 pkg=com.google.android.gms (has extras) },1]
07-04 11:59:01.588 2236 2431 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=com.google.android.gms.gcm.ACTION_CHECK_QUEUE flg=0x14 cmp=com.google.android.gms/.gcm.nts.SchedulerInternalReceiver (has extras) },1]
07-04 11:59:01.590 2236 2431 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=com.google.android.location.ALARM_WAKEUP_LOCATOR flg=0x14 (has extras) },1]
07-04 11:59:01.590 2236 2431 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { flg=0x14 cmp=com.google.android.gms/.lockbox.LockboxAlarmReceiver (has extras) },1]
07-04 11:59:01.591 2236 2431 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=com.google.android.location.ALARM_WAKEUP_ACTIVITY_DETECTION flg=0x14 (has extras) },1]
07-04 11:59:01.592 2236 2431 D ActivityManager: SystemUid, not FirstBoot, not Upgrade, use SERVICE_TIMEOUT
07-04 11:59:01.611 2236 2259 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=com.google.android.location.reporting.collectors.ULR_BAROMETER_READ_ALARM flg=0x14 pkg=com.google.android.gms (has extras) }]
07-04 11:59:01.620 2236 3090 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=com.google.android.gms.gcm.ACTION_CHECK_QUEUE flg=0x14 (has extras) }]
07-04 11:59:01.672 2236 3432 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=com.google.android.location.ALARM_WAKEUP_LOCATOR flg=0x14 (has extras) }]
07-04 11:59:01.690 2236 3432 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { flg=0x14 (has extras) }]
07-04 11:59:01.710 741 2256 D SoftapController: /data/misc/wifi/sockets already exists
07-04 11:59:01.711 741 26837 D SoftapController: SoftapController::threadStart...
07-04 11:59:01.711 741 26837 D SoftapController: /data/misc/wifi/sockets already exists
07-04 11:59:01.712 2236 2458 D SoftApManager: Soft AP is started
07-04 11:59:01.712 2236 2458 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },11]
07-04 11:59:01.712 2236 2458 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) },3]
07-04 11:59:01.713 2236 2458 D WifiNative-HAL: Failing getSupportedFeatureset because HAL isn't started
07-04 11:59:01.713 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:59:01.714 2775 2775 D TransmitPowerReceiver: Old PowerLevel: 6, current PowerLevel: 4
07-04 11:59:01.714 2775 2775 D TransmitPowerReceiver: Setting transmit power to 4
07-04 11:59:01.714 2236 2264 E BatteryStatsService: no controller energy info supplied
07-04 11:59:01.716 2236 2264 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu4/cpufreq/stats/time_in_state (No such file or directory)
07-04 11:59:01.717 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:01.730 2236 2236 E Tethering: could not find iface of type 0
07-04 11:59:01.752 3242 26834 I AsyncOpDispatcher: 35-GetDeviceDataUploadOptInStatusOperation
07-04 11:59:01.754 2236 3711 V OSNPGlue_jni: Entering : void onJavaLocationChanged(JNIEnv *, jobject, jboolean, jlong, jboolean, jlong, jboolean, jdouble, jboolean, jdouble, jboolean, jfloat, jboolean, jdouble, jboolean, jfloat, jboolean, jfloat, jboolean, jint)
07-04 11:59:01.754 2236 2736 E IzatSvc_ComboNetworkProvider: E/Exiting with error virtual void izat_manager::ComboNetworkProvider::reportLocationMsg::proc() const line 187 "1"
07-04 11:59:01.774 3242 3242 I GeofencerStateMachine: sendNewTransitions called.
07-04 11:59:01.778 2236 3470 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=com.google.android.apps.gsa.search.core.location.FLP_LOCATION flg=0x10 cmp=com.google.android.googlequicksearchbox/com.google.android.apps.gsa.search.core.location.LocationReceiver (has extras) },1]
07-04 11:59:01.781 3242 7969 I Places : Converted 0 out of 0 WiFi scans
07-04 11:59:01.801 3242 26834 I AsyncOpDispatcher: 35-GetDeviceDataUploadOptInStatusOperation
07-04 11:59:01.808 3242 26842 W ctxmgr : [AclManager]No 2 for (accnt=account#2113480487#, com.google.android.gms(10040):UserLocationProducer, vrsn=12685000, 0, 3pPkg = null , 3pMdlId = null , pid = 3242). Was: 2 for 1, account#2113480487#
07-04 11:59:01.816 3242 24454 I GCoreUlr: Successfully inserted 3 locations
07-04 11:59:01.819 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:01.834 2236 3432 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { act=com.google.android.apps.gsa.search.core.location.ACTIVITY_DETECTION flg=0x10 pkg=com.google.android.googlequicksearchbox (has extras) },1]
07-04 11:59:01.859 2236 2259 I BroadcastQueue: am_broadcast_enqueue: [background,1,Intent { flg=0x10 cmp=com.google.android.apps.maps/com.google.android.apps.gmm.navigation.service.detection.ActivityRecognitionReceiver (has extras) },1]
07-04 11:59:01.870 2236 12022 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=com.google.android.location.ALARM_WAKEUP_ACTIVITY_DETECTION flg=0x14 (has extras) }]
07-04 11:59:01.878 3242 3242 I GeofencerStateMachine: sendNewTransitions called.
07-04 11:59:01.879 3242 3242 I GeofencerStateMachine: sendNewLocationAvailability: availability=LocationAvailability[isLocationAvailable: true]
07-04 11:59:01.898 2236 3449 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=android.net.wifi.WIFI_AP_STATE_CHANGED flg=0x4000010 (has extras) }]
07-04 11:59:01.905 2236 12024 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=com.google.android.apps.gsa.search.core.location.FLP_LOCATION flg=0x10 (has extras) }]
07-04 11:59:01.920 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.021 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.066 2236 3496 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { act=com.google.android.apps.gsa.search.core.location.ACTIVITY_DETECTION flg=0x10 pkg=com.google.android.googlequicksearchbox (has extras) }]
07-04 11:59:02.082 2236 3496 I ActivityManager: Start proc 26847:com.google.android.apps.maps/u0a139 for broadcast com.google.android.apps.maps/com.google.android.apps.gmm.navigation.service.detection.ActivityRecognitionReceiver
07-04 11:59:02.122 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.222 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.224 26847 26847 I art : Starting a blocking GC AddRemoveAppImageSpace
07-04 11:59:02.259 26847 26847 I LoadedApk: No resource references to update in package alias:com.sonymobile.dummy
07-04 11:59:02.324 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.425 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.478 2236 3496 I BroadcastQueue: am_broadcast_finished: [background,1,Intent { flg=0x10 (has extras) }]
07-04 11:59:02.524 2236 12022 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 (has extras) },1]
07-04 11:59:02.524 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 (has extras) }]
07-04 11:59:02.525 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.592 2236 12015 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 (has extras) },1]
07-04 11:59:02.592 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 (has extras) }]
07-04 11:59:02.607 26847 26866 W System : ClassLoader referenced unknown path:
07-04 11:59:02.608 26847 26866 D ApplicationLoaders: ignored Vulkan layer search path /data/app/com.google.android.gms-2/lib/arm64:/data/app/com.google.android.gms-2/base.apk!/lib/arm64-v8a for namespace 0x7f81e350f0
07-04 11:59:02.614 975 975 I MSM-irqbalance: Decided to move IRQ65 from CPU0 to CPU3
07-04 11:59:02.626 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.661 2236 3176 I BroadcastQueue: am_broadcast_enqueue: [background,0,Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 (has extras) },1]
07-04 11:59:02.662 2236 2261 I BroadcastQueue: am_broadcast_finished: [background,0,Intent { act=android.net.conn.CONNECTIVITY_CHANGE flg=0x4000010 (has extras) }]
07-04 11:59:02.665 26847 26866 I cr_CronetLibraryLoader: Cronet version: 64.0.3282.137, arch: aarch64
07-04 11:59:02.727 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.750 26847 26866 D ApplicationLoaders: ignored Vulkan layer search path /data/app/com.google.android.gms-2/lib/arm64:/data/app/com.google.android.gms-2/base.apk!/lib/arm64-v8a for namespace 0x7f81e351d0
07-04 11:59:02.774 26847 26866 W linker : /data/app/com.google.android.gms-2/lib/arm64/libconscrypt_gmscore_jni.so: unused DT entry: type 0xf arg 0x8a
07-04 11:59:02.776 26847 26866 V NativeCrypto: Registering com/google/android/gms/org/conscrypt/NativeCrypto's 280 native methods...
07-04 11:59:02.807 26847 26866 D NetworkSecurityConfig: No Network Security Config specified, using platform default
07-04 11:59:02.809 26847 26866 I ProviderInstaller: Installed default security provider GmsCore_OpenSSL
07-04 11:59:02.829 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:02.930 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.034 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.135 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.237 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.338 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.439 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.541 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.643 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.745 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.847 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:03.949 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.050 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.153 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.255 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.357 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.459 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.560 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.661 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.763 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.865 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:04.887 741 26837 E SoftapController: Connection to hostapd Error.
07-04 11:59:04.967 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.068 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.172 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.273 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.375 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.476 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.577 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.678 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.779 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.880 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:05.982 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.083 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.184 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.286 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.387 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.488 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.589 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.691 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.793 2236 2848 E wpa_ctrl_impl: Failed to open ctrl connection
07-04 11:59:06.793 2236 2848 E SOMCWIFI: [WifiMonitor] startMonitoring failed!
07-04 11:59:07.661 975 975 I MSM-irqbalance: Decided to move IRQ332 from CPU0 to CPU1