Camera development for another Tegra 2 device - Folio 100 Android Development

I've been trying to get a hold of a few people about my quesiton.
I'm on the main developers for the Dell Streak 7, and our devices are extremely similiar and I've been working on camera for some time now.
DerArtem's code has gotten me the furthest but I am still a bit stuck.
camera.tegra.so compiles fine, but when I fire up camera app I get this
Code:
D/Camera_Factory( 107): CameraFactory::get_camera_info
D/Camera_Factory( 107): CameraFactory::getCameraInfo: id = 0,info = 0x41f3ad18
D/Camera_Factory( 107): CameraFactory::getCameraNum
D/Camera_Factory( 107): CameraFactory::getCameraInfo: about to fetch info
D/CameraHardware( 107): CameraHardware::getCameraInfo
D/Camera_Factory( 107): CameraFactory::get_camera_info
D/Camera_Factory( 107): CameraFactory::getCameraInfo: id = 1,info = 0x4139cd18
D/Camera_Factory( 107): CameraFactory::getCameraNum
D/Camera_Factory( 107): CameraFactory::getCameraInfo: about to fetch info
D/CameraHardware( 107): CameraHardware::getCameraInfo
V/CameraHolder( 804): open camera 0
D/Camera_Factory( 107): CameraFactory::get_camera_info
D/Camera_Factory( 107): CameraFactory::getCameraInfo: id = 0,info = 0x41d59c74
D/Camera_Factory( 107): CameraFactory::getCameraNum
D/Camera_Factory( 107): CameraFactory::getCameraInfo: about to fetch info
D/CameraHardware( 107): CameraHardware::getCameraInfo
I/CameraService( 107): Opening camera 0
D/Camera_Factory( 107): CameraFactory::device_open: name = 0
D/Camera_Factory( 107): CameraFactory::cameraDeviceOpen: id = 0
D/Camera_Factory( 107): CameraFactory::getCameraNum
D/CameraHardware( 107): CameraHardware::destruct
D/CameraHardware( 107): CameraHardware::PowerOff: Power OFF camera.
E/CameraHardware( 107): Could not open /sys/devices/platform/shuttle-pm-camera/power_on for writing.
I/Camera_Factory( 107): Using 1 camera!
I/Camera_Factory( 107): Returning /dev/video0
I/CameraHardware( 107): Using camera /dev/video0
D/CameraHardware( 107): CameraHardware::PowerOn: Power ON camera.
E/CameraHardware( 107): Could not open /sys/devices/platform/shuttle-pm-camera/power_on for writing.
D/CameraHardware( 107): CameraHardware::initDefaultParameters
E/V4L2Camera( 107): ERROR opening V4L interface: No such file or directory
E/CameraHardware( 107): cannot open device.
I/CameraHardware( 107): Default preview size: (320 x 240), fps:30
I/CameraHardware( 107): All available formats:
I/CameraHardware( 107): All available fps:
I/CameraHardware( 107): Default picture size: (320 x 240)
D/CameraHardware( 107): CameraHardware::setParameters
D/CameraHardware( 107): CameraHardware::setParameters: PREVIEW: Size 320x240, 30 fps, format: yuv422sp
D/CameraHardware( 107): CameraHardware::setParameters: PICTURE: Size 320x240, format: jpeg
D/CameraHardware( 107): CameraHardware::setParameters: VIDEO: Size 320x240, format: yuv420p
D/CameraHardware( 107): CameraHardware::initHeapLocked
E/CameraHardware( 107): No memory allocator available
D/CameraHardware( 107): CameraHardware::setParameters: OK
D/CameraHardware( 107): CameraHardware::connectCamera
D/CameraHardware( 107): CameraHardware::setCallbacks
D/CameraHardware( 107): CameraHardware::enableMsgType: 1037
I/AwesomePlayer( 107): setDataSource_l('/system/media/audio/ui/camera_click.ogg')
I/OMXCodec( 107): Attempting to allocate OMX node 'OMX.google.vorbis.decoder'
I/OMXCodec( 107): Successfully allocated OMX node 'OMX.google.vorbis.decoder'
I/AwesomePlayer( 107): setDataSource_l('/system/media/audio/ui/VideoRecord.ogg')
I/OMXCodec( 107): Attempting to allocate OMX node 'OMX.google.vorbis.decoder'
I/OMXCodec( 107): Successfully allocated OMX node 'OMX.google.vorbis.decoder'
D/CameraHardware( 107): CameraHardware::getParameters
D/CameraHardware( 107): CameraHardware::putParameters
D/CameraHardware( 107): CameraHardware::getParameters
D/CameraHardware( 107): CameraHardware::putParameters
D/Camera ( 804): app passed NULL surface
D/Camera_Factory( 107): CameraFactory::get_camera_info
D/Camera_Factory( 107): CameraFactory::getCameraInfo: id = 0,info = 0x41d59d18
D/Camera_Factory( 107): CameraFactory::getCameraNum
D/Camera_Factory( 107): CameraFactory::getCameraInfo: about to fetch info
D/CameraHardware( 107): CameraHardware::getCameraInfo
D/CameraHardware( 107): CameraHardware::getParameters
D/CameraHardware( 107): CameraHardware::putParameters
W/dalvikvm( 804): threadid=11: thread exiting with uncaught exception (group=0x40a4f1f8)
E/AndroidRuntime( 804): FATAL EXCEPTION: Thread-88
E/AndroidRuntime( 804): java.lang.NullPointerException
E/AndroidRuntime( 804): at com.android.camera.Camera.updateCameraParametersPreference(Camera.java:2227)
E/AndroidRuntime( 804): at com.android.camera.Camera.setCameraParameters(Camera.java:2363)
E/AndroidRuntime( 804): at com.android.camera.Camera.startPreview(Camera.java:2108)
E/AndroidRuntime( 804): at com.android.camera.Camera.access$3700(Camera.java:86)
E/AndroidRuntime( 804): at com.android.camera.Camera$5.run(Camera.java:1263)
E/AndroidRuntime( 804): at java.lang.Thread.run(Thread.java:856)
W/ActivityManager( 178): Force finishing activity com.android.camera/.Camera
W/ActivityManager( 178): Activity pause timeout for ActivityRecord{40f74730 com.android.camera/.Camera}
I am assuming it has to do with the power code
Code:
// File to control camera power
#define CAMERA_POWER "/sys/devices/platform/shuttle-pm-camera/power_on"
namespace android {
char videodevice[64];
bool CameraHardware::PowerOn()
{
LOGD("CameraHardware::PowerOn: Power ON camera.");
// power on camera
int handle = ::open(CAMERA_POWER,O_RDWR);
if (handle >= 0) {
::write(handle,"1\n",2);
::close(handle);
} else {
LOGE("Could not open %s for writing.", CAMERA_POWER);
return false;
}
// Wait until the camera is recognized or timed out
int timeOut = 500;
do {
// Try to open the video capture device
handle = ::open(videodevice,O_RDWR);
if (handle >= 0)
break;
// Wait a bit
::usleep(10000);
} while (--timeOut > 0);
if (handle >= 0) {
LOGD("Camera powered on");
::close(handle);
return true;
} else {
LOGE("Unable to power camera");
}
return false;
}
bool CameraHardware::PowerOff()
{
LOGD("CameraHardware::PowerOff: Power OFF camera.");
// power on camera
int handle = ::open(CAMERA_POWER,O_RDWR);
if (handle >= 0) {
::write(handle,"0\n",2);
::close(handle);
} else {
LOGE("Could not open %s for writing.", CAMERA_POWER);
return false;
}
return true;
}
As I don't have this "/sys/devices/platform/shuttle-pm-camera/power_on", any ideas?
I have /sys/devices/platform/tegra_camera, and I'm running a ov5642 camera module.
{
"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"
}

I take it DerArtem doesn't get on very often?

Is your camera a UVC over? Do you have an /dev/video0 ?
Update: Looks like your camera might need some other parameters. The power code is irrelevant here.. It is just used to turn off and on USB power for the camera, which does also not work of our devices (not implemented in kernel - we don't have a /sys/devices/platform/shuttle-pm-camera/power_on too)

I do have /dev/video0 and video1. Another I got was v4l wasn't being found. My kernel is 2.6.36, do you think that might be an issue?
Sent from my Nexus 7 using Tapatalk 2

giveen said:
I do have /dev/video0 and video1. Another I got was v4l wasn't being found. My kernel is 2.6.36, do you think that might be an issue?
Sent from my Nexus 7 using Tapatalk 2
Click to expand...
Click to collapse
Yes, I think so - the driver only supports V4L2 devices.

DerArtem said:
Yes, I think so - the driver only supports V4L2 devices.
Click to expand...
Click to collapse
Yeah, I'm not sure this uses v4l2 now....its just weird that it starts talking to the module but doesn't complete the connection or power up.
Thanks for your help.

giveen said:
Yeah, I'm not sure this uses v4l2 now....its just weird that it starts talking to the module but doesn't complete the connection or power up.
Thanks for your help.
Click to expand...
Click to collapse
E/V4L2Camera( 107): ERROR opening V4L interface: No such file or directory
Looks like your camera can not be opened with the V4L framework....

So bringing this back...
Code:
<6>[ 13.409067] Linux video capture interface: v2.00
<6>[ 13.410076] usbcore: registered new interface driver uvcvideo
<6>[ 13.410142] USB Video Class driver (v0.1.0)
<6>[ 13.413235] tegra_camera: probe
<4>[ 13.413910] BootLog, +ov5642_init+
<6>[ 13.413970] ov5642 sensor driver loading
<6>[ 13.414109] ov5642: probing sensor.
<4>[ 13.414600] BootLog, -ov5642_init-, ret=0
<4>[ 13.414663] BootLog, +ov9665_init+
<6>[ 13.414879] [CAM]ov9665_i2c_probe+
<6>[ 13.415240] [CAM]create /sys/devices/virtual/misc/ov9665/id
<6>[ 13.415308] [CAM]ov9665_i2c_probe-
<4>[ 13.415488] BootLog, -ov9665_init-, ret=0

Related

[Q] GPS hardware error?

Hi.
This is the error that I have encountered when I use an application that uses GPS.
When application starts, GPS icon on status bar blinks for about 2 seconds, and then dissapears.
A few week ago GPS was working fine, and I don't make changes in Kernel (Vurrut 9.1 + Gingerbread KPU).
This is a alogcat log filtered by "GPS":
Code:
W/PackageManager( 2112): Unknown permission android.permission.ACCESS_GPS in package com.wssyncmldm
W/PackageManager( 2112): Unknown permission android.permission.ACCESS_GPS in package com.android.settings.mt
I/ActivityManager( 2112): No longer want googoo.android.btgps (pid 2515): hidden #16
I/ActivityManager( 2112): No longer want googoo.android.btgps (pid 3049): hidden #16
D/GpsLocationProvider( 2112): setMinTime 0
E/SensorManager( 3276): registerListener :: handle = 2 name= MS-3C Orientation Sensor delay= 200000 Listener= [email protected]
D/GpsLocationProvider( 2112): startNavigating
D/GpsLocationProvider( 2112): startNavigating : SensorAiding is [email protected]bb2a8
E/SensorManager( 2112): registerListener :: handle = 0 name= BMA222 Acceleration Sensor delay= 60000 Listener= [email protected]09c9990
E/SensorManager( 2112): registerListener :: handle = 1 name= MS-3C Magnetic Sensor delay= 60000 Listener= [email protected]0abb430
E/SensorManager( 2112): registerListener :: handle = 2 name= MS-3C Orientation Sensor delay= 60000 Listener= [email protected]08f50d0
V/GpsLocationProvider( 2112): SensorAidingActivateAllSensor : Gyroscope sensor is NOT supported
V/GpsLocationProvider( 2112): SensorAidingRegister : Logging is OFF
V/GpsLocationProvider( 2112): SensorAidingSupportInversePortraitMode : 0
V/GpsLocationProvider( 2112): SensorAidingRotationChanged : 0
D/GpsLocationProvider( 2112): SensorAidingRegister : Exit
D/GpsLocationProvider( 2112): SensorAidingMakeSensorPacket : Not Ready (3, -1, 0, 0)
D/GpsLocationProvider( 2112): SensorAidingMakeSensorPacket : Not Ready (3, -1, 0, 0)
V/GpsLocationProvider( 2112): reportStatus status: 3
I/GPS ( 2112): gps_engine_status_update: called acquire_wakelock_cb
V/GpsLocationProvider( 2112): reportStatus status: 1
D/GpsLocationProvider( 2112): send an intent to notify that the GPS has been enabled or disabled
D/ ( 2112): [HYPOS] NOMOVE Time 125, PowerMode 3, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
V/GpsLocationProvider( 2112): SensorAiding LPP : Already GPS Turned ON
D/ ( 2112): [HYPOS] NOMOVE Time 625, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
V/GpsLocationProvider( 2112): SensorAiding LPP : Keep GPS ON
D/ ( 2112): [HYPOS] NOMOVE Time 1133, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
V/GpsLocationProvider( 2112): reportStatus status: 2
D/GpsLocationProvider( 2112): send an intent to notify that the GPS has been enabled or disabled
V/GpsLocationProvider( 2112): reportStatus status: 2
V/GpsLocationProvider( 2112): reportStatus status: 4
I/GPS ( 2112): gps_engine_status_update: called release_wakelock_cb
D/ ( 2112): [HYPOS] NOMOVE Time 62, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
D/ ( 2112): [HYPOS] NOMOVE Time 587, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
E/SensorManager( 3276): unregisterListener:: all sensors, listener = [email protected]
D/ ( 2112): [HYPOS] NOMOVE Time 1094, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
D/GpsLocationProvider( 2112): stopNavigating
E/SensorManager( 2112): unregisterListener:: all sensors, listener = [email protected]08f50d0
E/SensorManager( 2112): unregisterListener:: all sensors, listener = [email protected]0abb430
E/SensorManager( 2112): unregisterListener:: all sensors, listener = [email protected]09c9990
D/GpsLocationProvider( 2112): SensorAidingDeregister : Exit
V/GpsLocationProvider( 2112): reportStatus status: 2
E/GPS ( 2112): EPOLLERR or EPOLLHUP after epoll_wait()
I/GPS ( 2112): [gps_state_done][line = 298] : successfully called
E/GPS ( 2112): EPOLLERR or EPOLLHUP after epoll_wait()
I/GPS ( 2112): [gps_state_done][line = 298] : successfully called
E/GPS ( 2112): [gps_lcsapi_init][line = 441] : Failed to call BrcmLbs_init(errno = 111)
I/GPS ( 2112): [gps_state_done][line = 298] : successfully called
D/GpsLocationProvider( 2112): setMinTime 0
E/SensorManager( 3276): registerListener :: handle = 2 name= MS-3C Orientation Sensor delay= 200000 Listener= [email protected]
D/GpsLocationProvider( 2112): startNavigating
D/GpsLocationProvider( 2112): startNavigating : SensorAiding is [email protected]fb9d8
E/SensorManager( 2112): registerListener :: handle = 0 name= BMA222 Acceleration Sensor delay= 60000 Listener= [email protected]0b294c0
E/SensorManager( 2112): registerListener :: handle = 1 name= MS-3C Magnetic Sensor delay= 60000 Listener= [email protected]0b294d0
E/SensorManager( 2112): registerListener :: handle = 2 name= MS-3C Orientation Sensor delay= 60000 Listener= com.android.server.location.G[email protected]
V/GpsLocationProvider( 2112): SensorAidingActivateAllSensor : Gyroscope sensor is NOT supported
V/GpsLocationProvider( 2112): SensorAidingRegister : Logging is OFF
V/GpsLocationProvider( 2112): SensorAidingSupportInversePortraitMode : 0
V/GpsLocationProvider( 2112): SensorAidingRotationChanged : 0
D/GpsLocationProvider( 2112): SensorAidingRegister : Exit
D/GpsLocationProvider( 2112): SensorAidingMakeSensorPacket : Not Ready (3, -1, 1, 0)
V/GpsLocationProvider( 2112): reportStatus status: 3
I/GPS ( 2112): gps_engine_status_update: called acquire_wakelock_cb
V/GpsLocationProvider( 2112): reportStatus status: 1
D/GpsLocationProvider( 2112): send an intent to notify that the GPS has been enabled or disabled
D/ ( 2112): [HYPOS] NOMOVE Time 312, PowerMode 3, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
V/GpsLocationProvider( 2112): SensorAiding LPP : Already GPS Turned ON
D/ ( 2112): [HYPOS] NOMOVE Time 190, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
V/GpsLocationProvider( 2112): SensorAiding LPP : Keep GPS ON
D/ ( 2112): [HYPOS] NOMOVE Time 705, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
V/GpsLocationProvider( 2112): reportStatus status: 2
D/GpsLocationProvider( 2112): send an intent to notify that the GPS has been enabled or disabled
V/GpsLocationProvider( 2112): reportStatus status: 2
V/GpsLocationProvider( 2112): reportStatus status: 4
I/GPS ( 2112): gps_engine_status_update: called release_wakelock_cb
D/ ( 2112): [HYPOS] NOMOVE Time 186, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
D/ ( 2112): [HYPOS] NOMOVE Time 697, PowerMode 2, GPSWeakSignal 0, GPSFixTime 0, IsPedestrian 0, DOE 1
E/SensorManager( 3276): unregisterListener:: all sensors, listener = [email protected]
D/GpsLocationProvider( 2112): stopNavigating
E/SensorManager( 2112): unregisterListener:: all sensors, listener = [email protected]0b294e0
E/SensorManager( 2112): unregisterListener:: all sensors, listener = [email protected]0b294d0
E/SensorManager( 2112): unregisterListener:: all sensors, listener = [email protected]0b294c0
D/GpsLocationProvider( 2112): SensorAidingDeregister : Exit
V/GpsLocationProvider( 2112): reportStatus status: 2
E/GPS ( 2112): EPOLLERR or EPOLLHUP after epoll_wait()
I/GPS ( 2112): [gps_state_done][line = 298] : successfully called
E/GPS ( 2112): [gps_lcsapi_init][line = 441] : Failed to call BrcmLbs_init(errno = 111)
I/GPS ( 2112): [gps_state_done][line = 298] : successfully called
Any help is wellcome.
Thanks

[APP][2.2+] Professional File Manager

{
"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"
}
Organize, view, rename, zip, unzip, create, delete, move, copy your files like a pro! ​
With this File Manager you can do everything you want to your folders. It includes:
Copy
Move
Delete
Details
Rename
Compress
Favorites
Multiple file manipulator
Create
And more!
You can select from 2 themes (free users) and 6 themes (pro users)!!! With just a click of a button!
Also it includes a new and unique feature called Manipulator (pro users). This feature let you modify multiple file names (2+). With every name you want! Also it include a preview button, so you can see how it will look before messing everything up.
Add files and folder widget to your home screen. Pro users can change widget icon.
App information available.
2 Screens available. Each one have a separate file path so you can copy/past things easly. Just move your screen to one of the sides starting from where the favorits ends or click the buttons at the top part of your screen.
Encrypt and decrypt your text files (Pro)
Future updates will include:
Zip file viewer
Changelog
Code:
[COLOR="red"][SIZE="5"]Version 1.5:[/SIZE][/COLOR]
App information added. Double screen added, click on the top buttons or move your finger to the sides of your screen.
Code:
[COLOR="red"][SIZE="5"]Version 1.4:[/SIZE][/COLOR]
File and folder widget, Pro version users can change widget icon. Pro version users now have a feature to encrypt and decrypt text files. A few bug fixes with files details crash.
Code:
[COLOR="red"][SIZE="5"]Version: 1.3[/SIZE][/COLOR]
Bug fixes with images not appearing, included Root browser (beta, need some reports of it)
Code:
[COLOR="red"][SIZE="5"]Version: 1.2[/SIZE][/COLOR]
Pro Version available for download!
Code:
[COLOR="red"][SIZE="5"]Version: 1.0.1[/SIZE][/COLOR]
Fixed Pro Key error
Just in case
Note the first 5 person who post here will receive a code key for free!!!!
Rotary Heart said:
Note the first 5 person who post here will receive a code key for free!!!!
Click to expand...
Click to collapse
Can I have one?
Sent from my phone.
Looks great!
I would like to try this
Sent from my GT-I8150 using Tapatalk 2
The manipulator feature looks awesome.
Once the zip and root features are in, this could replace root explorer for me
Sent from my phone.
yeah this looks nice
Markyzz said:
The manipulator feature looks awesome.
Once the zip and root features are in, this could replace root explorer for me
Sent from my phone.
Click to expand...
Click to collapse
What you mean with zip feature? I'm working on zip and unzip rar files. so maybe next update :good:
Markyzz said:
The manipulator feature looks awesome.
Once the zip and root features are in, this could replace root explorer for me
Sent from my phone.
Click to expand...
Click to collapse
BTW: PM sent with key code
Bomoh said:
Looks great!
I would like to try this
Sent from my GT-I8150 using Tapatalk 2
Click to expand...
Click to collapse
PM sent with code key, please let me know if it works.
Markyzz said:
The manipulator feature looks awesome.
Once the zip and root features are in, this could replace root explorer for me
Sent from my phone.
Click to expand...
Click to collapse
PM sent with code key, please let me know if it works.
Update coming soon with a bug fix in code keys.
New update is coming. It doesn't have much new, just preparing for the ProVersion app that is already waiting to be published in SlideME market. Will post the link when its done. After this update and a couple of days to be sure that its working perfectly. I'm ready to begin with new things for the app.
BTW: Any idea, request or doubt feel free to ask here since that will help a lot.
Thanks
R: [APP][2.2+] Professional File Manager
Crash on xu 4.0.4 cm9.1
GEKTHEBOSS said:
Crash on xu 4.0.4 cm9.1
Click to expand...
Click to collapse
What you did? Open a folder? if you did, can I know what the folder have? (To see if I can replicate it) Do you have a rooted device? If you do, could yo get me a logcat?
Thanks
Sv: [APP][2.2+] Professional File Manager
I'd like to try it please
Sent from my Nexus 7 using Tapatalk HD
Number999 said:
I'd like to try it please
Sent from my Nexus 7 using Tapatalk HD
Click to expand...
Click to collapse
Try what? You can download it from Play Store
Sv: [APP][2.2+] Professional File Manager
Rotary Heart said:
Try what? You can download it from Play Store
Click to expand...
Click to collapse
Will do
Sent from my Nexus 7 using Tapatalk HD
R: [APP][2.2+] Professional File Manager
Rotary Heart said:
What you did? Open a folder? if you did, can I know what the folder have? (To see if I can replicate it) Do you have a rooted device? If you do, could yo get me a logcat?
Thanks
Click to expand...
Click to collapse
Logcat maked with alogcat app!
--------- beginning of /dev/log/main
I/libblt_hw( 1480): Library opened (handle = 5, fd = 26)
I/libblt_hw( 1480): Library closed (handle = 1, fd = 24)
--------- beginning of /dev/log/system
W/InputManagerService( 1843): Window already focused, ignoring focus gain of: [email protected]
I/ActivityManager( 1843): START {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.cyanogenmod.trebuchet/.Launcher} from pid 1843
I/libblt_hw( 1480): Library opened (handle = 1, fd = 28)
I/libblt_hw( 1480): Library closed (handle = 0, fd = 30)
D/dalvikvm( 2245): GC_CONCURRENT freed 4691K, 58% free 5421K/12871K, paused 2ms+5ms
D/dalvikvm( 2245): GC_FOR_ALLOC freed 732K, 58% free 5531K/12871K, paused 29ms
I/libblt_hw( 1480): Library closed (handle = 5, fd = 26)
D/dalvikvm( 2245): GC_CONCURRENT freed 83K, 44% free 7287K/12871K, paused 2ms+6ms
D/dalvikvm( 2245): GC_FOR_ALLOC freed 2557K, 53% free 6113K/12871K, paused 40ms
D/dalvikvm( 2245): GC_FOR_ALLOC freed 1K, 43% free 7369K/12871K, paused 34ms
I/dalvikvm-heap( 2245): Grow heap (frag case) to 16.285MB for 925072-byte allocation
D/dalvikvm( 2245): GC_CONCURRENT freed 2983K, 49% free 7099K/13831K, paused 6ms+4ms
D/dalvikvm( 2245): GC_FOR_ALLOC freed 1171K, 48% free 7277K/13831K, paused 33ms
D/dalvikvm( 2245): GC_CONCURRENT freed 323K, 37% free 8756K/13831K, paused 1ms+4ms
I/ActivityManager( 1843): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.rotaryheart.files.manager/.MainActivity} from pid 2245
D/dalvikvm( 1843): GC_FOR_ALLOC freed 1591K, 51% free 6119K/12359K, paused 68ms
I/libblt_hw( 1480): Library opened (handle = 0, fd = 24)
I/ActivityManager( 1843): Start proc com.rotaryheart.files.manager for activity com.rotaryheart.files.manager/.MainActivity: pid=6670 uid=10079 gids={1015, 3003}
I/ActivityManager( 1843): No longer want com.bel.android.dspmanager (pid 2482): hidden #16
W/ActivityManager( 1843): Scheduling restart of crashed service com.bel.android.dspmanager/.service.HeadsetService in 5000ms
D/OpenGLRenderer( 2245): Flushing caches (mode 1)
D/dalvikvm( 2245): GC_FOR_ALLOC freed 2891K, 49% free 7121K/13831K, paused 53ms
D/OpenGLRenderer( 2245): Flushing caches (mode 0)
D/dalvikvm( 2245): GC_FOR_ALLOC freed 1752K, 53% free 6628K/13831K, paused 23ms
I/libblt_hw( 1480): Library closed (handle = 1, fd = 28)
D/skia ( 6670): ---- fAsset->read(1) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(30) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(3) returned 0
D/skia ( 6670): ---- fAsset->read(6) returned 0
D/skia ( 6670): --- SkImageDecoder::Factory returned null
D/skia ( 6670): ---- fAsset->read(1) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(30) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(3) returned 0
D/skia ( 6670): ---- fAsset->read(6) returned 0
D/skia ( 6670): --- SkImageDecoder::Factory returned null
D/skia ( 6670): ---- fAsset->read(1) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(30) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(3) returned 0
D/skia ( 6670): ---- fAsset->read(6) returned 0
D/skia ( 6670): --- SkImageDecoder::Factory returned null
D/skia ( 6670): ---- fAsset->read(1) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(30) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(3) returned 0
D/skia ( 6670): ---- fAsset->read(6) returned 0
D/skia ( 6670): --- SkImageDecoder::Factory returned null
D/skia ( 6670): ---- fAsset->read(1) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(30) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(3) returned 0
D/skia ( 6670): ---- fAsset->read(6) returned 0
D/skia ( 6670): --- SkImageDecoder::Factory returned null
D/skia ( 6670): ---- fAsset->read(1) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(30) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(3) returned 0
D/skia ( 6670): ---- fAsset->read(6) returned 0
D/skia ( 6670): --- SkImageDecoder::Factory returned null
D/skia ( 6670): ---- fAsset->read(1) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(30) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(3) returned 0
D/skia ( 6670): ---- fAsset->read(6) returned 0
D/skia ( 6670): --- SkImageDecoder::Factory returned null
D/skia ( 6670): ---- fAsset->read(1) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(30) returned 0
D/skia ( 6670): ---- fAsset->read(4) returned 0
D/skia ( 6670): ---- fAsset->read(3) returned 0
D/skia ( 6670): ---- fAsset->read(6) returned 0
D/skia ( 6670): --- SkImageDecoder::Factory returned null
D/AndroidRuntime( 6670): Shutting down VM
W/dalvikvm( 6670): threadid=1: thread exiting with uncaught exception (group=0x40a541f8)
E/AndroidRuntime( 6670): FATAL EXCEPTION: main
E/AndroidRuntime( 6670): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.rotaryheart.files.manager/com.rotaryheart.files.manager.MainActivity}: java.lang.NumberFormatException: Invalid int: "2:"
E/AndroidRuntime( 6670): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2079)
E/AndroidRuntime( 6670): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2104)
E/AndroidRuntime( 6670): at android.app.ActivityThread.access$600(ActivityThread.java:132)
E/AndroidRuntime( 6670): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1157)
E/AndroidRuntime( 6670): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 6670): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 6670): at android.app.ActivityThread.main(ActivityThread.java:4575)
E/AndroidRuntime( 6670): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 6670): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 6670): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
E/AndroidRuntime( 6670): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556)
E/AndroidRuntime( 6670): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 6670): Caused by: java.lang.NumberFormatException: Invalid int: "2:"
E/AndroidRuntime( 6670): at java.lang.Integer.invalidInt(Integer.java:138)
E/AndroidRuntime( 6670): at java.lang.Integer.parse(Integer.java:375)
E/AndroidRuntime( 6670): at java.lang.Integer.parseInt(Integer.java:366)
E/AndroidRuntime( 6670): at java.lang.Integer.parseInt(Integer.java:332)
E/AndroidRuntime( 6670): at com.rotaryheart.files.manager.MainActivity.changeFiles(MainActivity.java:3148)
E/AndroidRuntime( 6670): at com.rotaryheart.files.manager.MainActivity.onCreate(MainActivity.java:1857)
E/AndroidRuntime( 6670): at android.app.Activity.performCreate(Activity.java:4465)
E/AndroidRuntime( 6670): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
E/AndroidRuntime( 6670): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2033)
E/AndroidRuntime( 6670): ... 11 more
W/ActivityManager( 1843): Force finishing activity com.rotaryheart.files.manager/.MainActivity
D/dalvikvm( 1843): GC_FOR_ALLOC freed 84K, 40% free 7429K/12359K, paused 57ms
I/libblt_hw( 1480): Library opened (handle = 1, fd = 23)
W/ActivityManager( 1843): Activity pause timeout for ActivityRecord{40ed5c40 com.rotaryheart.files.manager/.MainActivity}
I/libblt_hw( 1480): Library opened (handle = 5, fd = 30)
I/ActivityManager( 1843): Process android.process.acore (pid 6406) has died.
D/dalvikvm( 2245): GC_FOR_ALLOC freed 2891K, 62% free 5375K/13831K, paused 28ms
D/dalvikvm( 2245): GC_CONCURRENT freed 1144K, 57% free 5963K/13831K, paused 1ms+3ms
D/dalvikvm( 2245): GC_FOR_ALLOC freed 860K, 57% free 5954K/13831K, paused 28ms
D/dalvikvm( 2245): GC_CONCURRENT freed 320K, 47% free 7378K/13831K, paused 1ms+5ms
D/dalvikvm( 2245): GC_FOR_ALLOC freed 1256K, 50% free 7025K/13831K, paused 43ms
D/dalvikvm( 2245): GC_FOR_ALLOC freed 908K, 46% free 7550K/13831K, paused 54ms
D/dalvikvm( 1843): GC_EXPLICIT freed 175K, 36% free 7986K/12359K, paused 7ms+6ms
I/Process ( 6670): Sending signal. PID: 6670 SIG: 9
I/ActivityManager( 1843): Process com.rotaryheart.files.manager (pid 6670) has died.
I/libblt_hw( 1480): Library closed (handle = 1, fd = 23)
W/InputManagerService( 1843): Window already focused, ignoring focus gain of: [email protected]
D/dalvikvm( 2112): GC_CONCURRENT freed 1722K, 62% free 5175K/13383K, paused 13ms+8ms
I/libblt_hw( 1480): Library opened (handle = 1, fd = 23)
D/OpenGLRenderer( 2245): Flushing caches (mode 1)
I/libblt_hw( 1480): Library opened (handle = 6, fd = 41)
D/OpenGLRenderer( 2245): Flushing caches (mode 0)
I/libblt_hw( 1480): Library opened (handle = 7, fd = 43)
I/libblt_hw( 1480): Library closed (handle = 5, fd = 30)
I/ActivityManager( 1843): Start proc com.bel.android.dspmanager for service com.bel.android.dspmanager/.service.HeadsetService: pid=6704 uid=10012 gids={3002}
I/libblt_hw( 1480): Library closed (handle = 1, fd = 23)
W/InputManagerService( 1843): Starting input on non-focused client [email protected] (uid=10040 pid=2245)
I/HeadsetService( 6704): Starting service.
I/libblt_hw( 1480): Library closed (handle = 7, fd = 43)
I/libblt_hw( 1480): Library opened (handle = 1, fd = 28)
I/ActivityManager( 1843): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10304000 cmp=com.rotaryheart.files.manager/.MainActivity} from pid 2112
I/libblt_hw( 1480): Library opened (handle = 5, fd = 33)
I/ActivityManager( 1843): Start proc com.rotaryheart.files.manager for activity com.rotaryheart.files.manager/.MainActivity: pid=6719 uid=10079 gids={1015, 3003}
D/dalvikvm( 1481): GC_EXPLICIT freed 37K, 74% free 2184K/8323K, paused 3ms+4ms
D/dalvikvm( 1481): GC_EXPLICIT freed <1K, 74% free 2184K/8323K, paused 3ms+5ms
D/dalvikvm( 1481): GC_EXPLICIT freed <1K, 74% free 2184K/8323K, paused 2ms+4ms
I/libblt_hw( 1480): Library closed (handle = 6, fd = 41)
I/libblt_hw( 1480): Library closed (handle = 1, fd = 28)
D/skia ( 6719): ---- fAsset->read(1) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(30) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(3) returned 0
D/skia ( 6719): ---- fAsset->read(6) returned 0
D/skia ( 6719): --- SkImageDecoder::Factory returned null
D/skia ( 6719): ---- fAsset->read(1) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(30) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(3) returned 0
D/skia ( 6719): ---- fAsset->read(6) returned 0
D/skia ( 6719): --- SkImageDecoder::Factory returned null
D/skia ( 6719): ---- fAsset->read(1) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(30) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(3) returned 0
D/skia ( 6719): ---- fAsset->read(6) returned 0
D/skia ( 6719): --- SkImageDecoder::Factory returned null
D/skia ( 6719): ---- fAsset->read(1) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(30) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(3) returned 0
D/skia ( 6719): ---- fAsset->read(6) returned 0
D/skia ( 6719): --- SkImageDecoder::Factory returned null
D/skia ( 6719): ---- fAsset->read(1) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(30) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(3) returned 0
D/skia ( 6719): ---- fAsset->read(6) returned 0
D/skia ( 6719): --- SkImageDecoder::Factory returned null
D/skia ( 6719): ---- fAsset->read(1) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(30) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(3) returned 0
D/skia ( 6719): ---- fAsset->read(6) returned 0
D/skia ( 6719): --- SkImageDecoder::Factory returned null
D/skia ( 6719): ---- fAsset->read(1) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(30) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(3) returned 0
D/skia ( 6719): ---- fAsset->read(6) returned 0
D/skia ( 6719): --- SkImageDecoder::Factory returned null
D/skia ( 6719): ---- fAsset->read(1) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(30) returned 0
D/skia ( 6719): ---- fAsset->read(4) returned 0
D/skia ( 6719): ---- fAsset->read(3) returned 0
D/skia ( 6719): ---- fAsset->read(6) returned 0
D/skia ( 6719): --- SkImageDecoder::Factory returned null
D/AndroidRuntime( 6719): Shutting down VM
W/dalvikvm( 6719): threadid=1: thread exiting with uncaught exception (group=0x40a541f8)
E/AndroidRuntime( 6719): FATAL EXCEPTION: main
E/AndroidRuntime( 6719): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.rotaryheart.files.manager/com.rotaryheart.files.manager.MainActivity}: java.lang.NumberFormatException: Invalid int: "2:"
E/AndroidRuntime( 6719): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2079)
E/AndroidRuntime( 6719): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2104)
E/AndroidRuntime( 6719): at android.app.ActivityThread.access$600(ActivityThread.java:132)
E/AndroidRuntime( 6719): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1157)
E/AndroidRuntime( 6719): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 6719): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 6719): at android.app.ActivityThread.main(ActivityThread.java:4575)
E/AndroidRuntime( 6719): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 6719): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 6719): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
E/AndroidRuntime( 6719): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556)
E/AndroidRuntime( 6719): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 6719): Caused by: java.lang.NumberFormatException: Invalid int: "2:"
E/AndroidRuntime( 6719): at java.lang.Integer.invalidInt(Integer.java:138)
E/AndroidRuntime( 6719): at java.lang.Integer.parse(Integer.java:375)
E/AndroidRuntime( 6719): at java.lang.Integer.parseInt(Integer.java:366)
E/AndroidRuntime( 6719): at java.lang.Integer.parseInt(Integer.java:332)
E/AndroidRuntime( 6719): at com.rotaryheart.files.manager.MainActivity.changeFiles(MainActivity.java:3148)
E/AndroidRuntime( 6719): at com.rotaryheart.files.manager.MainActivity.onCreate(MainActivity.java:1857)
E/AndroidRuntime( 6719): at android.app.Activity.performCreate(Activity.java:4465)
E/AndroidRuntime( 6719): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
E/AndroidRuntime( 6719): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2033)
E/AndroidRuntime( 6719): ... 11 more
W/ActivityManager( 1843): Force finishing activity com.rotaryheart.files.manager/.MainActivity
D/dalvikvm( 1843): GC_FOR_ALLOC freed 241K, 35% free 8146K/12359K, paused 61ms
I/libblt_hw( 1480): Library opened (handle = 1, fd = 23)
W/ActivityManager( 1843): Activity pause timeout for ActivityRecord{40ee9d08 com.rotaryheart.files.manager/.MainActivity}
I/libblt_hw( 1480): Library opened (handle = 6, fd = 30)
D/dalvikvm( 2245): GC_CONCURRENT freed 3904K, 61% free 5404K/13831K, paused 3ms+5ms
W/ActivityManager( 1843): Activity destroy timeout for ActivityRecord{40ed5c40 com.rotaryheart.files.manager/.MainActivity}
I/libblt_hw( 1480): Library closed (handle = 0, fd = 24)
D/dalvikvm( 2245): GC_CONCURRENT freed 1172K, 57% free 6074K/13831K, paused 2ms+2ms
I/Process ( 6719): Sending signal. PID: 6719 SIG: 9
D/dalvikvm( 2245): GC_FOR_ALLOC freed 837K, 57% free 5976K/13831K, paused 38ms
I/ActivityManager( 1843): Process com.rotaryheart.files.manager (pid 6719) has died.
I/libblt_hw( 1480): Library closed (handle = 1, fd = 23)
W/InputManagerService( 1843): Starting input on non-focused client [email protected] (uid=10080 pid=6582)
D/dalvikvm( 2245): GC_CONCURRENT freed 343K, 47% free 7378K/13831K, paused 2ms+3ms
D/dalvikvm( 2245): GC_FOR_ALLOC freed 1258K, 50% free 7023K/13831K, paused 23ms
D/dalvikvm( 2245): GC_CONCURRENT freed 2188K, 52% free 6675K/13831K, paused 1ms+3ms
I/libblt_hw( 1480): Library opened (handle = 0, fd = 26)
D/dalvikvm( 1843): GC_FOR_ALLOC freed 340K, 36% free 8029K/12359K, paused 81ms
D/OpenGLRenderer( 2245): Flushing caches (mode 1)
I/libblt_hw( 1480): Library opened (handle = 1, fd = 41)
D/OpenGLRenderer( 2245): Flushing caches (mode 0)
I/libblt_hw( 1480): Library opened (handle = 7, fd = 43)
I/libblt_hw( 1480): Library closed (handle = 6, fd = 30)
W/InputManagerService( 1843): Starting input on non-focused client [email protected] (uid=10040 pid=2245)
I/libblt_hw( 1480): Library closed (handle = 0, fd = 26)
I/libblt_hw( 1480): Library closed (handle = 7, fd = 43)
Send me an e-mail to [email protected] so I can send you a test apk, if its working then I will upload it to Play Store

Sensation XE Crashes - Hangs - Reboots on Heavy Tasks

Hi,
I've been encountering an issue which seem to have started of yesterday. First let me say that this happened with HNS (ICS 4.0.3), CM 10.2 by Albinoman and Sultan, Elegancia Sense 3.6, so it's not quite possible to be rom related.
Thing is, my Sensation seems to crash after a shortwhile of either loading an heavy task, or when I start playing a "heavy" game. It warms up, after a few seconds crashes and automatically reboots.
I got a last_kmsg from when I was using CM10.2 from Albino's
http://pastebin.com/8ecxRVce
I was playing a game there when it happened. Note that it doesn't take 2 minutes to crash, so it's really sensitive somewhat.
It happened also while plugged on charger.
It tends to happen also on task intensive operations specially when already hot, - Example: flash rom , reboot, boot, - adding my Google account (by now it's hot already, but not burning hot) - crashes. So doesn't need to be a game to make this happen, it will happen if i wont let it "rest" or cool it down. I'm able to use my mobile, just can't ask to much of it.
Frequencies tested were 192/386 min, and 1.5 max. I've taken my XE to 1.7 so it's nothing new.
So, any hints before I throw myself from a bridge? I'm hoping it's not hardware related. I'm considering later on formatting my Sdcard all over again since I've tried a few fresh clean roms and the issue persists.
Thank you for reading this and hope I can find help.
Thanks in advance.
Could be the battery?
Sent from my HTC Sensation Z710e using xda premium
Could be anything, but how to troubleshoot it?
Sent from my HTC Sensation XE with Beats Audio using xda premium
MidnightDevil said:
Could be anything, but how to troubleshoot it?
Sent from my HTC Sensation XE with Beats Audio using xda premium
Click to expand...
Click to collapse
i think when a heavy task is processing the system requires more power from the battery in order to execute it
so maybe the battery can't provide anymore more power(because it is old,i am justing saying)
or it doesn't connect properly in the pins.you can check that too
try another battery and run again a heavy task to see how it will behave
for now i can't think something else
It does make sense to a certain point but;
It doesn't crash right away. And it also happens with tasks that don't require much power (crashed on Google add account wizard) , but was still warm from a previous crash with reboot.
If I don't turn it off meanwhile when its really hot, it keeps bootlooping.
And I think if it was a lose pin or alike, it would probably reboot right away. It takes a few seconds to reboot.
Sent from my HTC Sensation using xda premium
And getting convinced that its related to the temperature. I just dont know why because its nothing extraordinary.
Sent from my HTC Sensation using xda premium
MidnightDevil said:
And getting convinced that its related to the temperature. I just dont know why because its nothing extraordinary.
Sent from my HTC Sensation using xda premium
Click to expand...
Click to collapse
Overclock cpu or gpu too much?
Did you try a different kernel to see if the issue persists?
Sent from my HTC Sensation Z710e using xda premium
MidnightDevil said:
And getting convinced that its related to the temperature. I just dont know why because its nothing extraordinary.
Sent from my HTC Sensation using xda premium
Click to expand...
Click to collapse
Also, did you try undervolting? it could reduce heat. You can also try underclocking the COU to 1188Mhz, it still works very well in most ROMs.
I've tried a LOT of things with different kernels.
Elegancia Sense 3.6 with Sebastian FM kernel - Persists
Inspiration with default kernel (bricked) - Persists
CM 10 by Bruce with is kernel - Persists
Albino's 10.2 - Persists
Sultan's with both of his kernels - Persists
I've limited the frequency to 1.3, seems to hang on a while longer but still happens (takes a little while longer to heat)
Seems like my XE lost it's heating tolerance.
I've also re-formated my sdcard all over again, persists.
I'm out of ideas and more convinced that it's related to heating issue, it also hangs a little longer if I removed the back cover, but still happens (I got no fan lol).
A logcat that I had running through adb when it crashed.
This was meant to (replicate the crash) - started a game and started logging. I hope it says something relevant but I don't think so as logcat halts soon as XE crashes.
Logcat:
I/ActivityManager( 654): Applications Memory Usage (kB):
I/ActivityManager( 654): Uptime: 11009811 Realtime: 15003938
I/ActivityManager( 654): Total PSS by OOM adjustment:
I/ActivityManager( 654): 69675 kB: System
I/ActivityManager( 654): 69675 kB: system (pid 654)
I/ActivityManager( 654): 58356 kB: Persistent
I/ActivityManager( 654): 43909 kB: com.android.systemui (pid 1046)
I/ActivityManager( 654): 14447 kB: com.android.phone (pid 1164)
I/ActivityManager( 654): 135885 kB: Foreground
I/ActivityManager( 654): 135885 kB: com.gamelion.loh (pid 22544)
I/ActivityManager( 654): 77058 kB: Visible
I/ActivityManager( 654): 35734 kB: android.process.acore (pid 1111)
I/ActivityManager( 654): 13780 kB: com.android.vending (pid 22427)
I/ActivityManager( 654): 13670 kB: com.google.process.gapps (pid 1190)
I/ActivityManager( 654): 10977 kB: com.google.process.location (pid 1143)
I/ActivityManager( 654): 2897 kB: com.android.smspush (pid 1252)
I/ActivityManager( 654): 18816 kB: Perceptible
I/ActivityManager( 654): 18816 kB: com.android.inputmethod.latin (pid 1128)
I/ActivityManager( 654): 15438 kB: A Services
I/ActivityManager( 654): 9914 kB: in.vineetsirohi.customwidget (pid 30460)
I/ActivityManager( 654): 5524 kB: rs.pedjaapps.KernelTuner:background (pid 20617)
I/ActivityManager( 654): 16577 kB: Home
I/ActivityManager( 654): 16577 kB: com.anddoes.launcher (pid 5504)
I/ActivityManager( 654): 17993 kB: Previous
I/ActivityManager( 654): 17993 kB: com.keramidas.TitaniumBackup (pid 9396)
I/ActivityManager( 654): 6298 kB: B Services
I/ActivityManager( 654): 3158 kB: org.nocrew.tomas.headsetnotifierfree (pid 13723)
I/ActivityManager( 654): 3140 kB: com.bel.android.dspmanager (pid 13692)
I/ActivityManager( 654):
I/ActivityManager( 654): Total PSS: 416096 kB
I/ActivityManager( 654): KSM: 0 kB saved from shared 0 kB
I/ActivityManager( 654): 0 kB unshared; 0 kB volatile
I/System.out(20617): both
I/System.out(20617): both
I/ActivityManager( 654): Start proc com.google.android.gms for service com.google.android.gms/.analytics.service.AnalyticsService: pid=22937 uid=10038 gid
s={50038, 3003, 1007, 1028, 1015, 2001, 3006}
D/dalvikvm( 1252): GC_EXPLICIT freed 69K, 77% free 2484K/10752K, paused 22ms+2ms, total 81ms
I/System.out(20617): both
I/ActivityManager( 654): Process com.bel.android.dspmanager (pid 13692) has died.
W/ActivityManager( 654): Scheduling restart of crashed service com.bel.android.dspmanager/.service.HeadsetService in 5000ms
I/ActivityManager( 654): Process org.nocrew.tomas.headsetnotifierfree (pid 13723) has died.
W/ActivityManager( 654): Scheduling restart of crashed service org.nocrew.tomas.headsetnotifierfree/.RegistrationService in 14649ms
D/dalvikvm( 1190): GC_EXPLICIT freed 858K, 63% free 4080K/10752K, paused 7ms+6ms, total 78ms
I/Recovery(22937): Received: Intent { act=com.google.android.gms.INITIALIZE flg=0x10 pkg=com.google.android.gms cmp=com.google.android.gms/.recovery.Accoun
tRecoveryBackgroundService$Receiver }
I/ActivityManager( 654): Start proc com.google.android.gsf.login for service com.google.android.gms/.recovery.AccountRecoveryBackgroundService: pid=22963
uid=10038 gids={50038, 3003, 1007, 1028, 1015, 2001, 3006}
D/GCM ( 1190): GcmService start Intent { act=com.google.android.gms.INITIALIZE flg=0x10 pkg=com.google.android.gms cmp=com.google.android.gms/.gcm.GcmS
ervice } com.google.android.gms.INITIALIZE
D/dalvikvm( 654): GC_CONCURRENT freed 3845K, 58% free 17869K/42096K, paused 13ms+34ms, total 261ms
I/Recovery(22937): Received: Intent { act=com.google.android.gms.INITIALIZE flg=0x10 pkg=com.google.android.gms cmp=com.google.android.gms/.recovery.Accoun
tRecoveryBackgroundService$Receiver }
D/GCM ( 1190): GcmService start Intent { act=com.google.android.gms.INITIALIZE flg=0x10 pkg=com.google.android.gms cmp=com.google.android.gms/.gcm.GcmS
ervice } com.google.android.gms.INITIALIZE
I/System.out(20617): both
D/dalvikvm(20617): GC_CONCURRENT freed 1957K, 77% free 2566K/10752K, paused 47ms+2ms, total 81ms
I/System.out(20617): both
I/GameAnalytics(22544): logDesignEvent() eventId: treasure:chest value: 1.0
I/GameAnalytics(22544): New design event: treasure:chest, value: 1.0, area: class com.Claw.Android.ClawActivity, pos: (0.0, 0.0, 0.0)
I/KontagentAnalytics(22544): logEvent(): treasure_chest/new_adventure/null/chest_opened v: 1 lvl: 29 json: {"reward_coins":200,"enemies_alive":21,"treasure
_potion":false}
D/Kontagent(22544): T#1881:Trying to enqueue a message: Message{url='http://api.geo.kontagent.net/api/v1/3a2aea7b23a849828bbeb4acb94eaf49/evt/?v=1&ts=13790
88923&s=4618507343653043118&kt_v=a1.2.10&data=eyJyZXdhcmRfY29pbnMiOjIwMCwiZW5lbWllc19hbGl2ZSI6MjEsInRyZWFzdXJlX3BvdGlvbiI6%0AZmFsc2V9%0A&n=chest_opened&l=2
9&st1=treasure_chest&st2=new_adventure', id=5949642916774127861, name='evt', sessionId='4618507343653043118', timestamp='1379088923', isDelivered=false, de
liveryTrials=0}
D/Kontagent(22544): T#1881:Adding message: Message{url='http://api.geo.kontagent.net/api/v1/3a2aea7b23a849828bbeb4acb94eaf49/evt/?v=1&ts=1379088923&s=46185
07343653043118&kt_v=a1.2.10&data=eyJyZXdhcmRfY29pbnMiOjIwMCwiZW5lbWllc19hbGl2ZSI6MjEsInRyZWFzdXJlX3BvdGlvbiI6%0AZmFsc2V9%0A&n=chest_opened&l=29&st1=treasur
e_chest&st2=new_adventure', id=5949642916774127861, name='evt', sessionId='4618507343653043118', timestamp='1379088923', isDelivered=false, deliveryTrials=
0}
D/Kontagent:TransferQueue(22544): T#1881:Stopping queue processing timer
I/System.out(20617): both
I/ActivityManager( 654): Start proc com.bel.android.dspmanager for service com.bel.android.dspmanager/.service.HeadsetService: pid=23003 uid=10013 gids={5
0013, 3002, 1028}
D/Kontagent(22544): T#1881:doProcessQueue()
I/Kontagent:TransferQueue(22544): T#1881rocessing message: [session ID = 4618507343653043118, message ID = 5949642916774127861, URL = http://api.geo.kont
agent.net/api/v1/3a2aea7b23a849828bbeb4acb94eaf49/evt/?v=1&ts=1379088923&s=4618507343653043118&kt_v=a1.2.10&data=eyJyZXdhcmRfY29pbnMiOjIwMCwiZW5lbWllc19hbG
l2ZSI6MjEsInRyZWFzdXJlX3BvdGlvbiI6%0AZmFsc2V9%0A&n=chest_opened&l=29&st1=treasure_chest&st2=new_adventure]
I/HeadsetService(23003): Starting service.
I/Kontagent(22544): T#1881:HTTP operation completed successfully => schedule processing of next operation...
D/Kontagent:TransferQueue(22544): T#1881:Stopping queue processing timer
D/Kontagent(22544): T#1881:Trying to remove a message id: 5949642916774127861
I/System.out(20617): both
D/Kontagent(22544): T#1881:Removing message: Message{url='http://api.geo.kontagent.net/api/v1/3a2aea7b23a849828bbeb4acb94eaf49/evt/?v=1&ts=1379088923&s=461
8507343653043118&kt_v=a1.2.10&data=eyJyZXdhcmRfY29pbnMiOjIwMCwiZW5lbWllc19hbGl2ZSI6MjEsInRyZWFzdXJlX3BvdGlvbiI6%0AZmFsc2V9%0A&n=chest_opened&l=29&st1=treas
ure_chest&st2=new_adventure', id=5949642916774127861, name='evt', sessionId='4618507343653043118', timestamp='1379088923', isDelivered=false, deliveryTrial
s=0}
D/Kontagent(22544): T#1881:doProcessQueue()
I/HeadsetService(23003): Headset=false; Bluetooth=false ; USB=false
I/System.out(20617): both
I/System.out(20617): both
I/System.out(20617): both
I/GameAnalytics(22544): Time interval passed
I/GameAnalytics(22544): Network is connected, sending events
I/GameAnalytics(22544): Sending 2 design events.
I/GameAnalytics(22544): Raw JSON for design events being sent to GA server: [{"area":"class com.Claw.Android.ClawActivity","build":"android-F1P","event_id"
:"adventure:random","session_id":"7e68c5e73d761765feaf101075a3478a","user_id":"1f254846d1f716ef0bdc91ef63777ef4","value":1.0,"x":0.0,"y":0.0,"z":0.0},{"are
a":"class com.Claw.Android.ClawActivity","build":"android-F1P","event_id":"treasure:chest","session_id":"7e68c5e73d761765feaf101075a3478a","user_id":"1f254
846d1f716ef0bdc91ef63777ef4","value":1.0,"x":0.0,"y":0.0,"z":0.0}]
I/GameAnalytics(22544): onStart
I/GameAnalytics(22544): No business events to send.
I/GameAnalytics(22544): No quality events to send.
I/GameAnalytics(22544): No user events to send.
I/System.out(20617): both
I/GameAnalytics(22544): Succesful response: {"status":"ok"}
I/GameAnalytics(22544): onFinish
I/System.out(20617): both
I/System.out(20617): both
I/ActivityManager( 654): Start proc org.nocrew.tomas.headsetnotifierfree for service org.nocrew.tomas.headsetnotifierfree/.RegistrationService: pid=23048
uid=10070 gids={50070, 3003, 1028}
I/System.out(20617): both
I/System.out(20617): both
I/System.out(20617): both
D/Kontagent(22544): T#01:Heartbeat!
D/Kontagent(22544): T#1881:Trying to enqueue a message: Message{url='http://api.geo.kontagent.net/api/v1/3a2aea7b23a849828bbeb4acb94eaf49/pgr/?ts=137908893
8&s=4618507343653043118&kt_v=a1.2.10', id=5106047472959354123, name='pgr', sessionId='4618507343653043118', timestamp='1379088938', isDelivered=false, deli
veryTrials=0}
D/Kontagent(22544): T#1881:Adding message: Message{url='http://api.geo.kontagent.net/api/v1/3a2aea7b23a849828bbeb4acb94eaf49/pgr/?ts=1379088938&s=461850734
3653043118&kt_v=a1.2.10', id=5106047472959354123, name='pgr', sessionId='4618507343653043118', timestamp='1379088938', isDelivered=false, deliveryTrials=0}
D/Kontagent:TransferQueue(22544): T#1881:Stopping queue processing timer
I/System.out(20617): both
D/dalvikvm(22427): GC_EXPLICIT freed 6003K, 63% free 4002K/10752K, paused 36ms+8ms, total 125ms
D/Kontagent(22544): T#1881:doProcessQueue()
I/Kontagent:TransferQueue(22544): T#1881rocessing message: [session ID = 4618507343653043118, message ID = 5106047472959354123, URL = http://api.geo.kont
agent.net/api/v1/3a2aea7b23a849828bbeb4acb94eaf49/pgr/?ts=1379088938&s=4618507343653043118&kt_v=a1.2.10]
I/Kontagent(22544): T#1881:HTTP operation completed successfully => schedule processing of next operation...
D/Kontagent:TransferQueue(22544): T#1881:Stopping queue processing timer
D/Kontagent(22544): T#1881:Trying to remove a message id: 5106047472959354123
D/Kontagent(22544): T#1881:Removing message: Message{url='http://api.geo.kontagent.net/api/v1/3a2aea7b23a849828bbeb4acb94eaf49/pgr/?ts=1379088938&s=4618507
343653043118&kt_v=a1.2.10', id=5106047472959354123, name='pgr', sessionId='4618507343653043118', timestamp='1379088938', isDelivered=false, deliveryTrials=
0}
D/Kontagent(22544): T#1881:doProcessQueue()
I/System.out(20617): both
Click to expand...
Click to collapse
Last_Kmsg
?[H?[JEvery 2s: dmesg | tail -40 2013-09-13 17:28:10
<6>EXT4-fs (mmcblk0p24): re-mounted. Opts: user_xattr,barrier=1,data=ordered,noauto_da_alloc
<6>EXT4-fs (mmcblk0p28): re-mounted. Opts: user_xattr,barrier=1,data=ordered,noauto_da_alloc
<6>EXT4-fs (dm-0): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-1): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-2): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-3): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-4): re-mounted. Opts: user_xattr,barrier=1
<3>init: untracked pid 5515 exited
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x007, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<3>init: untracked pid 5517 exited
<6>call alarm, type 3, func alarm_triggered+0x0/0xa0, 711620000000 (s 711620000000)
<6>call alarm, type 1, func alarm_triggered+0x0/0xa0, 1379089680073000000 (s 1379089680073000000)
<4>------------[ cut here ]------------
<4>WARNING: at /home/albinoman887/cm-10.2/kernel/htc/msm8660/arch/arm/mach-msm/clock-local.c:376 branch_clk_disable+0xf8/0x108()
<4>sdc3_p_clk status stuck at 'on'
<4>Modules linked in: bcmdhd
<4>[<c010c934>] (unwind_backtrace+0x0/0xf8) from [<c01928c4>] (warn_slowpath_common+0x50/0x110)
<4>[<c01928c4>] (warn_slowpath_common+0x50/0x110) from [<c01929f4>] (warn_slowpath_fmt+0x30/0x40)
<4>[<c01929f4>] (warn_slowpath_fmt+0x30/0x40) from [<c015751c>] (branch_clk_disable+0xf8/0x108)
<4>[<c015751c>] (branch_clk_disable+0xf8/0x108) from [<c01169bc>] (clk_disable+0x88/0x254)
<4>[<c01169bc>] (clk_disable+0x88/0x254) from [<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc)
<4>[<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc) from [<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec)
<4>[<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec) from [<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38)
<4>[<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38) from [<c0434ea8>] (rpm_suspend+0x304/0x654)
<4>[<c0434ea8>] (rpm_suspend+0x304/0x654) from [<c043576c>] (pm_runtime_work+0x8c/0x90)
<4>[<c043576c>] (pm_runtime_work+0x8c/0x90) from [<c01afa9c>] (process_one_work+0x12c/0x46c)
<4>[<c01afa9c>] (process_one_work+0x12c/0x46c) from [<c01b00dc>] (worker_thread+0x138/0x2e4)
<4>[<c01b00dc>] (worker_thread+0x138/0x2e4) from [<c01b527c>] (kthread+0x80/0x88)
<4>[<c01b527c>] (kthread+0x80/0x88) from [<c0107510>] (kernel_thread_exit+0x0/0x8)
<4>---[ end trace 140dd820274d5078 ]---
<6>call alarm, type 0, func alarm_triggered+0x0/0xa0, 1379089682622000000 (s 1379089682622000000)
<4>TSENS: Current CPU Temperature is: 55
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x02D, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x00C, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<5>CPU1: shutdown
<6>[K] CPU1: msm_pm_power_collapse: change clock rate (old rate = 0)
<6>[MPDEC]: CPU[1] on->off | Mask=[10] | time online: 17999
?[H?[JEvery 2s: dmesg | tail -40 2013-09-13 17:28:12
<6>EXT4-fs (mmcblk0p24): re-mounted. Opts: user_xattr,barrier=1,data=ordered,noauto_da_alloc
<6>EXT4-fs (mmcblk0p28): re-mounted. Opts: user_xattr,barrier=1,data=ordered,noauto_da_alloc
<6>EXT4-fs (dm-0): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-1): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-2): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-3): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-4): re-mounted. Opts: user_xattr,barrier=1
<3>init: untracked pid 5515 exited
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x007, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<3>init: untracked pid 5517 exited
<6>call alarm, type 3, func alarm_triggered+0x0/0xa0, 711620000000 (s 711620000000)
<6>call alarm, type 1, func alarm_triggered+0x0/0xa0, 1379089680073000000 (s 1379089680073000000)
<4>------------[ cut here ]------------
<4>WARNING: at /home/albinoman887/cm-10.2/kernel/htc/msm8660/arch/arm/mach-msm/clock-local.c:376 branch_clk_disable+0xf8/0x108()
<4>sdc3_p_clk status stuck at 'on'
<4>Modules linked in: bcmdhd
<4>[<c010c934>] (unwind_backtrace+0x0/0xf8) from [<c01928c4>] (warn_slowpath_common+0x50/0x110)
<4>[<c01928c4>] (warn_slowpath_common+0x50/0x110) from [<c01929f4>] (warn_slowpath_fmt+0x30/0x40)
<4>[<c01929f4>] (warn_slowpath_fmt+0x30/0x40) from [<c015751c>] (branch_clk_disable+0xf8/0x108)
<4>[<c015751c>] (branch_clk_disable+0xf8/0x108) from [<c01169bc>] (clk_disable+0x88/0x254)
<4>[<c01169bc>] (clk_disable+0x88/0x254) from [<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc)
<4>[<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc) from [<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec)
<4>[<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec) from [<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38)
<4>[<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38) from [<c0434ea8>] (rpm_suspend+0x304/0x654)
<4>[<c0434ea8>] (rpm_suspend+0x304/0x654) from [<c043576c>] (pm_runtime_work+0x8c/0x90)
<4>[<c043576c>] (pm_runtime_work+0x8c/0x90) from [<c01afa9c>] (process_one_work+0x12c/0x46c)
<4>[<c01afa9c>] (process_one_work+0x12c/0x46c) from [<c01b00dc>] (worker_thread+0x138/0x2e4)
<4>[<c01b00dc>] (worker_thread+0x138/0x2e4) from [<c01b527c>] (kthread+0x80/0x88)
<4>[<c01b527c>] (kthread+0x80/0x88) from [<c0107510>] (kernel_thread_exit+0x0/0x8)
<4>---[ end trace 140dd820274d5078 ]---
<6>call alarm, type 0, func alarm_triggered+0x0/0xa0, 1379089682622000000 (s 1379089682622000000)
<4>TSENS: Current CPU Temperature is: 55
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x02D, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x00C, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<5>CPU1: shutdown
<6>[K] CPU1: msm_pm_power_collapse: change clock rate (old rate = 0)
<6>[MPDEC]: CPU[1] on->off | Mask=[10] | time online: 17999
?[H?[JEvery 2s: dmesg | tail -40 2013-09-13 17:28:15
<6>EXT4-fs (dm-0): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-1): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-2): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-3): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-4): re-mounted. Opts: user_xattr,barrier=1
<3>init: untracked pid 5515 exited
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x007, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<3>init: untracked pid 5517 exited
<6>call alarm, type 3, func alarm_triggered+0x0/0xa0, 711620000000 (s 711620000000)
<6>call alarm, type 1, func alarm_triggered+0x0/0xa0, 1379089680073000000 (s 1379089680073000000)
<4>------------[ cut here ]------------
<4>WARNING: at /home/albinoman887/cm-10.2/kernel/htc/msm8660/arch/arm/mach-msm/clock-local.c:376 branch_clk_disable+0xf8/0x108()
<4>sdc3_p_clk status stuck at 'on'
<4>Modules linked in: bcmdhd
<4>[<c010c934>] (unwind_backtrace+0x0/0xf8) from [<c01928c4>] (warn_slowpath_common+0x50/0x110)
<4>[<c01928c4>] (warn_slowpath_common+0x50/0x110) from [<c01929f4>] (warn_slowpath_fmt+0x30/0x40)
<4>[<c01929f4>] (warn_slowpath_fmt+0x30/0x40) from [<c015751c>] (branch_clk_disable+0xf8/0x108)
<4>[<c015751c>] (branch_clk_disable+0xf8/0x108) from [<c01169bc>] (clk_disable+0x88/0x254)
<4>[<c01169bc>] (clk_disable+0x88/0x254) from [<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc)
<4>[<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc) from [<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec)
<4>[<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec) from [<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38)
<4>[<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38) from [<c0434ea8>] (rpm_suspend+0x304/0x654)
<4>[<c0434ea8>] (rpm_suspend+0x304/0x654) from [<c043576c>] (pm_runtime_work+0x8c/0x90)
<4>[<c043576c>] (pm_runtime_work+0x8c/0x90) from [<c01afa9c>] (process_one_work+0x12c/0x46c)
<4>[<c01afa9c>] (process_one_work+0x12c/0x46c) from [<c01b00dc>] (worker_thread+0x138/0x2e4)
<4>[<c01b00dc>] (worker_thread+0x138/0x2e4) from [<c01b527c>] (kthread+0x80/0x88)
<4>[<c01b527c>] (kthread+0x80/0x88) from [<c0107510>] (kernel_thread_exit+0x0/0x8)
<4>---[ end trace 140dd820274d5078 ]---
<6>call alarm, type 0, func alarm_triggered+0x0/0xa0, 1379089682622000000 (s 1379089682622000000)
<4>TSENS: Current CPU Temperature is: 55
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x02D, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x00C, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<5>CPU1: shutdown
<6>[K] CPU1: msm_pm_power_collapse: change clock rate (old rate = 0)
<6>[MPDEC]: CPU[1] on->off | Mask=[10] | time online: 17999
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x021, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
?[H?[JEvery 2s: dmesg | tail -40 2013-09-13 17:28:17
<6>EXT4-fs (dm-2): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-3): re-mounted. Opts: user_xattr,barrier=1
<6>EXT4-fs (dm-4): re-mounted. Opts: user_xattr,barrier=1
<3>init: untracked pid 5515 exited
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x007, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<3>init: untracked pid 5517 exited
<6>call alarm, type 3, func alarm_triggered+0x0/0xa0, 711620000000 (s 711620000000)
<6>call alarm, type 1, func alarm_triggered+0x0/0xa0, 1379089680073000000 (s 1379089680073000000)
<4>------------[ cut here ]------------
<4>WARNING: at /home/albinoman887/cm-10.2/kernel/htc/msm8660/arch/arm/mach-msm/clock-local.c:376 branch_clk_disable+0xf8/0x108()
<4>sdc3_p_clk status stuck at 'on'
<4>Modules linked in: bcmdhd
<4>[<c010c934>] (unwind_backtrace+0x0/0xf8) from [<c01928c4>] (warn_slowpath_common+0x50/0x110)
<4>[<c01928c4>] (warn_slowpath_common+0x50/0x110) from [<c01929f4>] (warn_slowpath_fmt+0x30/0x40)
<4>[<c01929f4>] (warn_slowpath_fmt+0x30/0x40) from [<c015751c>] (branch_clk_disable+0xf8/0x108)
<4>[<c015751c>] (branch_clk_disable+0xf8/0x108) from [<c01169bc>] (clk_disable+0x88/0x254)
<4>[<c01169bc>] (clk_disable+0x88/0x254) from [<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc)
<4>[<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc) from [<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec)
<4>[<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec) from [<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38)
<4>[<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38) from [<c0434ea8>] (rpm_suspend+0x304/0x654)
<4>[<c0434ea8>] (rpm_suspend+0x304/0x654) from [<c043576c>] (pm_runtime_work+0x8c/0x90)
<4>[<c043576c>] (pm_runtime_work+0x8c/0x90) from [<c01afa9c>] (process_one_work+0x12c/0x46c)
<4>[<c01afa9c>] (process_one_work+0x12c/0x46c) from [<c01b00dc>] (worker_thread+0x138/0x2e4)
<4>[<c01b00dc>] (worker_thread+0x138/0x2e4) from [<c01b527c>] (kthread+0x80/0x88)
<4>[<c01b527c>] (kthread+0x80/0x88) from [<c0107510>] (kernel_thread_exit+0x0/0x8)
<4>---[ end trace 140dd820274d5078 ]---
<6>call alarm, type 0, func alarm_triggered+0x0/0xa0, 1379089682622000000 (s 1379089682622000000)
<4>TSENS: Current CPU Temperature is: 55
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x02D, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x00C, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<5>CPU1: shutdown
<6>[K] CPU1: msm_pm_power_collapse: change clock rate (old rate = 0)
<6>[MPDEC]: CPU[1] on->off | Mask=[10] | time online: 17999
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x021, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x019, Level = 4, l_thd equal = 0x10, h_thd = 0x1d
?[H?[JEvery 2s: dmesg | tail -40 2013-09-13 17:28:19
<6>[LS][ISL29029] ALS_ADC = 0x007, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<3>init: untracked pid 5517 exited
<6>call alarm, type 3, func alarm_triggered+0x0/0xa0, 711620000000 (s 711620000000)
<6>call alarm, type 1, func alarm_triggered+0x0/0xa0, 1379089680073000000 (s 1379089680073000000)
<4>------------[ cut here ]------------
<4>WARNING: at /home/albinoman887/cm-10.2/kernel/htc/msm8660/arch/arm/mach-msm/clock-local.c:376 branch_clk_disable+0xf8/0x108()
<4>sdc3_p_clk status stuck at 'on'
<4>Modules linked in: bcmdhd
<4>[<c010c934>] (unwind_backtrace+0x0/0xf8) from [<c01928c4>] (warn_slowpath_common+0x50/0x110)
<4>[<c01928c4>] (warn_slowpath_common+0x50/0x110) from [<c01929f4>] (warn_slowpath_fmt+0x30/0x40)
<4>[<c01929f4>] (warn_slowpath_fmt+0x30/0x40) from [<c015751c>] (branch_clk_disable+0xf8/0x108)
<4>[<c015751c>] (branch_clk_disable+0xf8/0x108) from [<c01169bc>] (clk_disable+0x88/0x254)
<4>[<c01169bc>] (clk_disable+0x88/0x254) from [<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc)
<4>[<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc) from [<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec)
<4>[<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec) from [<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38)
<4>[<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38) from [<c0434ea8>] (rpm_suspend+0x304/0x654)
<4>[<c0434ea8>] (rpm_suspend+0x304/0x654) from [<c043576c>] (pm_runtime_work+0x8c/0x90)
<4>[<c043576c>] (pm_runtime_work+0x8c/0x90) from [<c01afa9c>] (process_one_work+0x12c/0x46c)
<4>[<c01afa9c>] (process_one_work+0x12c/0x46c) from [<c01b00dc>] (worker_thread+0x138/0x2e4)
<4>[<c01b00dc>] (worker_thread+0x138/0x2e4) from [<c01b527c>] (kthread+0x80/0x88)
<4>[<c01b527c>] (kthread+0x80/0x88) from [<c0107510>] (kernel_thread_exit+0x0/0x8)
<4>---[ end trace 140dd820274d5078 ]---
<6>call alarm, type 0, func alarm_triggered+0x0/0xa0, 1379089682622000000 (s 1379089682622000000)
<4>TSENS: Current CPU Temperature is: 55
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x02D, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x00C, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<5>CPU1: shutdown
<6>[K] CPU1: msm_pm_power_collapse: change clock rate (old rate = 0)
<6>[MPDEC]: CPU[1] on->off | Mask=[10] | time online: 17999
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x021, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x019, Level = 4, l_thd equal = 0x10, h_thd = 0x1d
<6>[BATT] htc_batt_get_battery_adc , vref:20285, battid_adc:2487, battid:122
<4> at 729486485902 (2013-09-13 16:28:17.857630654 UTC)
<6>[BATT] ioctl: battery level update: 100 at 729489751283 (2013-09-13 16:28:17.860865517 UTC)
<6>[BATT] ID=2, level=100, vol=4089, temp=357, batt_current=-279, chg_src=1, chg_en=1, full_bat=1730, over_vchg=0, batt_state=1 at 729489781800 (2013-09-13
16:28:17.860896035 UTC)
<6>[BATT] power_supply_changed: battery at 729490178529 (2013-09-13 16:28:17.861292763 UTC)
?[H?[JEvery 2s: dmesg | tail -40 2013-09-13 17:28:21
<6>call alarm, type 3, func alarm_triggered+0x0/0xa0, 711620000000 (s 711620000000)
<6>call alarm, type 1, func alarm_triggered+0x0/0xa0, 1379089680073000000 (s 1379089680073000000)
<4>------------[ cut here ]------------
<4>WARNING: at /home/albinoman887/cm-10.2/kernel/htc/msm8660/arch/arm/mach-msm/clock-local.c:376 branch_clk_disable+0xf8/0x108()
<4>sdc3_p_clk status stuck at 'on'
<4>Modules linked in: bcmdhd
<4>[<c010c934>] (unwind_backtrace+0x0/0xf8) from [<c01928c4>] (warn_slowpath_common+0x50/0x110)
<4>[<c01928c4>] (warn_slowpath_common+0x50/0x110) from [<c01929f4>] (warn_slowpath_fmt+0x30/0x40)
<4>[<c01929f4>] (warn_slowpath_fmt+0x30/0x40) from [<c015751c>] (branch_clk_disable+0xf8/0x108)
<4>[<c015751c>] (branch_clk_disable+0xf8/0x108) from [<c01169bc>] (clk_disable+0x88/0x254)
<4>[<c01169bc>] (clk_disable+0x88/0x254) from [<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc)
<4>[<c058ce9c>] (msmsdcc_switch_clock+0x138/0x3cc) from [<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec)
<4>[<c058d4ac>] (msmsdcc_runtime_suspend+0xe0/0xec) from [<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38)
<4>[<c0431334>] (pm_generic_runtime_suspend+0x2c/0x38) from [<c0434ea8>] (rpm_suspend+0x304/0x654)
<4>[<c0434ea8>] (rpm_suspend+0x304/0x654) from [<c043576c>] (pm_runtime_work+0x8c/0x90)
<4>[<c043576c>] (pm_runtime_work+0x8c/0x90) from [<c01afa9c>] (process_one_work+0x12c/0x46c)
<4>[<c01afa9c>] (process_one_work+0x12c/0x46c) from [<c01b00dc>] (worker_thread+0x138/0x2e4)
<4>[<c01b00dc>] (worker_thread+0x138/0x2e4) from [<c01b527c>] (kthread+0x80/0x88)
<4>[<c01b527c>] (kthread+0x80/0x88) from [<c0107510>] (kernel_thread_exit+0x0/0x8)
<4>---[ end trace 140dd820274d5078 ]---
<6>call alarm, type 0, func alarm_triggered+0x0/0xa0, 1379089682622000000 (s 1379089682622000000)
<4>TSENS: Current CPU Temperature is: 55
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x02D, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x00C, Level = 3, l_thd equal = 0x6, h_thd = 0xf
<5>CPU1: shutdown
<6>[K] CPU1: msm_pm_power_collapse: change clock rate (old rate = 0)
<6>[MPDEC]: CPU[1] on->off | Mask=[10] | time online: 17999
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x021, Level = 5, l_thd equal = 0x1e, h_thd = 0x15c
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x019, Level = 4, l_thd equal = 0x10, h_thd = 0x1d
<6>[BATT] htc_batt_get_battery_adc , vref:20285, battid_adc:2487, battid:122
<4> at 729486485902 (2013-09-13 16:28:17.857630654 UTC)
<6>[BATT] ioctl: battery level update: 100 at 729489751283 (2013-09-13 16:28:17.860865517 UTC)
<6>[BATT] ID=2, level=100, vol=4089, temp=357, batt_current=-279, chg_src=1, chg_en=1, full_bat=1730, over_vchg=0, batt_state=1 at 729489781800 (2013-09-13
16:28:17.860896035 UTC)
<6>[BATT] power_supply_changed: battery at 729490178529 (2013-09-13 16:28:17.861292763 UTC)
<6>[PS][ISL29029] isl_irq: CONFIG = 0x56, INT_PIN = 0, INT = 0xc
<6>[LS][ISL29029] ALS_ADC = 0x005, Level = 2, l_thd equal = 0x4, h_thd = 0x5
Click to expand...
Click to collapse
Files attached (dmesg and last_kmsg).

[Q] Since last update, camera stops working after a while?

Very strange, since the 176.44.1 update the camera stops working after a few days?
I open the camera app, and it closes showing an initialization failure message, I soft-reboot and I get another kind of message: "Unfortunately, Camera has stopped" (caused by an NullPointerException). Then I hard-reboot, and the camera works again for a certain period of time.
I made a logcat for the scenario after the soft-reboot, if anyone has an idea what is going on, I am curious, I will also try to get a logcat before I reboot..
Code:
I/SFPerfTracer(26124): triggers: (rate: 0:0) (207 sw vsyncs) (0 skipped) (0:2606 vsyncs) (1:4681)
W/ContextImpl(26788): Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1600 android.content.ContextWrapper.startService:494 android.content.Context
Wrapper.startService:494 com.motorola.motocare.internal.batterystats.BatteryStatsAction.onReceive:33 android.app.ActivityThread.handleReceiver:2446
D/dalvikvm(26484): GC_FOR_ALLOC freed 1364K, 20% free 24072K/29924K, paused 104ms, total 104ms
D/dalvikvm(26788): GC_CONCURRENT freed 2321K, 42% free 11079K/18932K, paused 2ms+2ms, total 30ms
D/dalvikvm(26788): WAIT_FOR_CONCURRENT_GC blocked 16ms
D/dalvikvm(26788): WAIT_FOR_CONCURRENT_GC blocked 19ms
D/dalvikvm(26788): GC_CONCURRENT freed 2073K, 42% free 11010K/18932K, paused 1ms+2ms, total 23ms
D/WifiStateMachine(26484): handleMessage: E msg.what=131155
D/WifiStateMachine(26484): processMsg: ConnectedState
D/WifiStateMachine(26484): processMsg: L2ConnectedState
D/WifiStateMachine(26484): handleMessage: X
I/SFPerfTracer(26124): triggers: (rate: 3:124) (compose: 0:3) (post: 0:3) (render: 2:31) (0:1227 frames) (1:4148)
D/SFPerfTracer(26124): layers: (4:9) (DimLayer: 0:107)* (FocusedStackFrame: 0:68)* (StatusBar: 1:2037) (NavigationBar: 0:479) (com.android.systemui.ImageWallpaper: 0:30) (DimLayer: 0:58)* (DimL
ayer: 0:6)* (com.anddoes.launcher/com.anddoes.launcher.Launcher: 0:29)
I/MDMCTBK ( 273): NetlinkHandler, power_supply subsys
I/MDMCTBK ( 273): NetlinkHandler, usbChargerStateChanged
I/MDMCTBK ( 273): MdmCutbackHndler,readFromFile = /sys/class/power_supply/usb/online
I/MDMCTBK ( 273): MdmCutbackHndler,readFromFile =
E/MDMCTBK ( 273): MdmCutbackHndler,Could not open ''
I/MDMCTBK ( 273): NetlinkHandler, power_supply subsys
I/MDMCTBK ( 273): NetlinkHandler, usbChargerStateChanged
I/MDMCTBK ( 273): MdmCutbackHndler,readFromFile = /sys/class/power_supply/usb/online
I/MDMCTBK ( 273): MdmCutbackHndler,readFromFile =
E/MDMCTBK ( 273): MdmCutbackHndler,Could not open ''
D/battery_widget_monitor(27702): bmw_watcher got intent: android.intent.action.BATTERY_CHANGED
D/battery_widget_monitor(27702): Event handling took 27ms
D/battery_widget_monitor(27702): bmw_watcher got intent: android.intent.action.BATTERY_CHANGED
D/battery_widget_monitor(27702): Event handling took 21ms
W/qdhwcomposer(26124): delay_vsync:0 read:17727us prop:1133us
D/WifiStateMachine(26484): handleMessage: E msg.what=131155
D/WifiStateMachine(26484): processMsg: ConnectedState
D/WifiStateMachine(26484): processMsg: L2ConnectedState
D/WifiStateMachine(26484): handleMessage: X
I/SFPerfTracer(26124): triggers: (rate: 0:0) (207 sw vsyncs) (0 skipped) (0:2606 vsyncs) (1:4782)
D/WifiStateMachine(26484): handleMessage: E msg.what=131155
D/WifiStateMachine(26484): processMsg: ConnectedState
D/WifiStateMachine(26484): processMsg: L2ConnectedState
D/WifiStateMachine(26484): handleMessage: X
I/SFPerfTracer(26124): triggers: (rate: 3:124) (compose: 0:3) (post: 0:3) (render: 2:31) (0:1227 frames) (1:4248)
D/SFPerfTracer(26124): layers: (4:9) (DimLayer: 0:107)* (FocusedStackFrame: 0:68)* (StatusBar: 1:2137) (NavigationBar: 0:479) (com.android.systemui.ImageWallpaper: 0:30) (DimLayer: 0:58)* (DimL
ayer: 0:6)* (com.anddoes.launcher/com.anddoes.launcher.Launcher: 0:30)
D/WifiStateMachine(26484): handleMessage: E msg.what=131155
D/WifiStateMachine(26484): processMsg: ConnectedState
D/WifiStateMachine(26484): processMsg: L2ConnectedState
D/WifiStateMachine(26484): handleMessage: X
W/qdhwcomposer(26124): delay_vsync:0 read:17164us prop:552us
W/qdhwcomposer(26124): delay_vsync:0 read:17731us prop:1137us
I/SFPerfTracer(26124): triggers: (rate: 0:0) (207 sw vsyncs) (0 skipped) (0:2606 vsyncs) (1:4883)
D/WifiStateMachine(26484): handleMessage: E msg.what=131155
D/WifiStateMachine(26484): processMsg: ConnectedState
D/WifiStateMachine(26484): processMsg: L2ConnectedState
D/WifiStateMachine(26484): handleMessage: X
I/SFPerfTracer(26124): triggers: (rate: 3:124) (compose: 0:3) (post: 0:3) (render: 2:31) (0:1227 frames) (1:4348)
D/SFPerfTracer(26124): layers: (4:9) (DimLayer: 0:107)* (FocusedStackFrame: 0:68)* (StatusBar: 1:2237) (NavigationBar: 0:479) (com.android.systemui.ImageWallpaper: 0:30) (DimLayer: 0:58)* (DimL
ayer: 0:6)* (com.anddoes.launcher/com.anddoes.launcher.Launcher: 0:30)
D/WifiStateMachine(26484): handleMessage: E msg.what=131155
D/WifiStateMachine(26484): processMsg: ConnectedState
D/WifiStateMachine(26484): processMsg: L2ConnectedState
D/WifiStateMachine(26484): handleMessage: X
I/SFPerfTracer(26124): triggers: (rate: 0:0) (207 sw vsyncs) (0 skipped) (0:2606 vsyncs) (1:4984)
W/qdhwcomposer(26124): delay_vsync:0 read:17766us prop:1172us
D/WifiStateMachine(26484): handleMessage: E msg.what=131155
D/WifiStateMachine(26484): processMsg: ConnectedState
D/WifiStateMachine(26484): processMsg: L2ConnectedState
D/WifiStateMachine(26484): handleMessage: X
W/qdhwcomposer(26124): delay_vsync:0 read:17748us prop:1155us
I/SFPerfTracer(26124): triggers: (rate: 3:124) (compose: 0:3) (post: 0:3) (render: 2:31) (0:1227 frames) (1:4448)
D/SFPerfTracer(26124): layers: (4:9) (DimLayer: 0:107)* (FocusedStackFrame: 0:68)* (StatusBar: 1:2337) (NavigationBar: 0:479) (com.android.systemui.ImageWallpaper: 0:30) (DimLayer: 0:58)* (DimL
ayer: 0:6)* (com.anddoes.launcher/com.anddoes.launcher.Launcher: 0:30)
D/WifiStateMachine(26484): handleMessage: E msg.what=131155
D/WifiStateMachine(26484): processMsg: ConnectedState
D/WifiStateMachine(26484): processMsg: L2ConnectedState
D/WifiStateMachine(26484): handleMessage: X
I/ActivityManager(26484): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.motorola.camera/.Camera bnds=[16,842][176,1036]} from pid 26849
W/ContextImpl(26788): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1244 android.content.ContextWrapper.sendBroadcast:365 com.motorola.motocare
.util.TriggerHelper$TriggerBuilder.send:76 com.motorola.motocare.internal.frameworkevents.PauseResumeTrigger.handleFrameworkEvent:53 com.motorola.motocare.internal.frameworkevents.FwEventMonitor$Frame
workListener.processFrameworkEvent:114
I/ActivityManager(26484): Start proc com.motorola.camera for activity com.motorola.camera/.Camera: pid=1678 uid=10012 gids={50012, 1028, 1015}
W/ContextImpl(26788): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1244 android.content.ContextWrapper.sendBroadcast:365 com.motorola.motocare
.util.TriggerHelper$TriggerBuilder.send:76 com.motorola.motocare.internal.frameworkevents.PauseResumeTrigger.handleFrameworkEvent:53 com.motorola.motocare.internal.frameworkevents.FwEventMonitor$Frame
workListener.processFrameworkEvent:114
I/dalvikvm( 1678): DexOpt: not all deps represented
E/dalvikvm( 1678): /system/framework/com.motorola.motosignature.jar odex has stale dependencies
I/dalvikvm( 1678): DexOpt: not all deps represented
E/dalvikvm( 1678): /system/framework/com.motorola.frameworks.core.addon.jar odex has stale dependencies
I/dalvikvm( 1678): DexOpt: not all deps represented
E/dalvikvm( 1678): /system/priv-app/MotCamera.apk odex has stale dependencies
E/QCamera2Factory(26166): int qcamera::QCamera2Factory::getCameraInfo(int, camera_info*): E, camera_id = 0
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
E/QCamera2Factory(26166): int qcamera::QCamera2Factory::getCameraInfo(int, camera_info*): E, camera_id = 1
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
W/CamcorderProfileMotExt( 1678): Not supported
E/BlurCheckin( 1678): Checkin class does not exist:java.lang.ClassNotFoundException: com.motorola.checkinwrapper.CheckinEventWrapper
E/QCamera2Factory(26166): int qcamera::QCamera2Factory::getCameraInfo(int, camera_info*): E, camera_id = 0
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
I/SFPerfTracer(26124): triggers: (rate: 0:0) (207 sw vsyncs) (0 skipped) (27:2633 vsyncs) (29:5092)
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
E/QCamera2Factory(26166): int qcamera::QCamera2Factory::getCameraInfo(int, camera_info*): E, camera_id = 1
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
E/QCamera2Factory(26166): int qcamera::QCamera2Factory::getCameraInfo(int, camera_info*): E, camera_id = 1
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
E/QCamera2Factory(26166): int qcamera::QCamera2Factory::getCameraInfo(int, camera_info*): E, camera_id = 1
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
I/Adreno-EGL( 1678): <qeglDrvAPI_eglInitialize:320>: EGL 1.4 QUALCOMM build: (N/A)
I/Adreno-EGL( 1678): OpenGL ES Shader Compiler Version: E031.24.00.00
I/Adreno-EGL( 1678): Build Date: 11/12/13 Tue
I/Adreno-EGL( 1678): Local Branch:
I/Adreno-EGL( 1678): Remote Branch:
I/Adreno-EGL( 1678): Local Patches:
I/Adreno-EGL( 1678): Reconstruct Branch:
D/OpenGLRenderer( 1678): Enabling debug mode 0
W/AppOps (26484): Bad call: specified package qcamera under uid 1013 but it is really -1
I/AwesomePlayer(26166): setDataSource_l(URL suppressed)
I/CameraApp( 1678): CameraService connected
D/Sensors (26484): AccelerationSensor: Set Sensors state 0x3
D/Sensors (26484): AccelerationSensor: set delay 200
D/Sensors (26484): AccelerationSensor: set delay 200
D/QCUtils (26166): extended extractor not needed, return default
I/AwesomePlayer(26166): setDataSource_l(URL suppressed)
D/QCUtils (26166): extended extractor not needed, return default
I/CameraClient(26166): Opening camera 1
D/QCameraStateMachine(26166): static void* qcamera::QCameraStateMachine::smEvtProcRoutine(void*): E
D/MotISP_GPU(26166): int MotISP_GPU::Init(int, int): GPU resolution: 1280x720
E/QCamera2HWI(26166): [KPI Perf] int qcamera::QCamera2HardwareInterface::openCamera(hw_device_t**): E PROFILE_OPEN_CAMERA camera id 1
I/QCameraHalWatchdog(26166): Starting Watchdog Thread...
E/mm-camera-intf(26166): mm_camera_open: dev name = /dev/video2, cam_idx = 2
I/Adreno-EGL(26166): <qeglDrvAPI_eglInitialize:320>: EGL 1.4 QUALCOMM build: (N/A)
I/Adreno-EGL(26166): OpenGL ES Shader Compiler Version: E031.24.00.00
I/Adreno-EGL(26166): Build Date: 11/12/13 Tue
I/Adreno-EGL(26166): Local Branch:
I/Adreno-EGL(26166): Remote Branch:
I/Adreno-EGL(26166): Local Patches:
I/Adreno-EGL(26166): Reconstruct Branch:
E/mm-camera-sensor(18314): module_sensor_start_session:483 session 2
E/mm-camera-sensor(18314): csid_open:123 VIDIOC_MSM_CSID_IO_CFG failed Invalid argument
E/mm-camera-sensor(18314): module_sensor_init_session:222 failed rc -1
I/LaunchCheckinHandler(26484): Displayed com.motorola.camera/.Camera,cp,ca,654
I/ActivityManager(26484): Displayed com.motorola.camera/.Camera: +654ms
E/mm-camera-sensor(18314): module_sensor_init_session:424 failed
E/mm-camera-sensor(18314): module_sensor_start_session:518 failed
E/mm-camera-sensor(18314): module_sensor_start_session:533 failed
E/mm-camera(18314): isp_tintless_open: E: b6d74d55
E/mm-camera(18314): isp_tintless_get_version: lib returned version 3.61 err=0
E/mm-camera-CORE(18314): aec_process_config_fast_conv(25): E
E/mm-camera-CORE(18314): preview width 0, preview height 0
E/mm-camera-CORE(18314): new_ew=, ewp125=, ewp25=, ewp5=, ewn125=, ewn25=, ewn5=
E/mm-camera-CORE(18314): new_ew[0]=0.200000, 0.200000, 0.200000, 0.200000, 0.200000, 0.200000, 0.200000
E/mm-camera-CORE(18314): new_ew[1]=0.420000, 0.226250, 0.278750, 0.357500, 0.175000, 0.162500, 0.137500
E/mm-camera-CORE(18314): new_ew[2]=0.463100, 0.451638, 0.514913, 0.638769, 0.366250, 0.300000, 0.220000
E/mm-camera-CORE(18314): new_ew[3]=0.996300, 0.654287, 0.849856, 1.380994, 0.426075, 0.389050, 0.291444
E/mm-camera-CORE(18314): new_ew[4]=1.588600, 1.243662, 1.627331, 2.497488, 0.738462, 0.542894, 0.347325
E/mm-camera-CORE(18314): new_ew[5]=1.930800, 1.936887, 2.207275, 3.025563, 1.267200, 0.982819, 0.584981
E/mm-camera-CORE(18314): new_ew[6]=2.155700, 2.163925, 2.568000, 3.222006, 1.660412, 1.290738, 0.796012
E/mm-camera-CORE(18314): new_ew[7]=2.333000, 2.535975, 2.780531, 3.401256, 1.773788, 1.689450, 1.191450
E/mm-camera-CORE(18314): new_ew[8]=2.365300, 2.501018, 2.809443, 3.384231, 2.076375, 1.723394, 1.306037
E/mm-camera-CORE(18314): new_ew[9]=2.366600, 2.514106, 2.804081, 3.198936, 2.195262, 1.840156, 1.397706
E/mm-camera-CORE(18314): new_ew[10]=2.357500, 2.654462, 2.783257, 3.290006, 2.069800, 2.053487, 1.627856
E/mm-camera-CORE(18314): new_ew[11]=2.338900, 2.487406, 2.749294, 3.078550, 2.218119, 1.922050, 1.603938
E/mm-camera-CORE(18314): new_ew[12]=2.314100, 2.603112, 2.705568, 3.148263, 2.210156, 2.070206, 1.618069
E/mm-camera-CORE(18314): new_ew[13]=2.285300, 2.424018, 2.658537, 3.066426, 2.046537, 1.915469, 1.774219
...snip..
E/mm-camera-CORE(18314): new_ew[252]=0.000000, 0.000000, 0.000000, 0.000000, 0.408637, 0.442606, 0.540937
E/mm-camera-CORE(18314): new_ew[253]=0.000000, 0.000000, 0.000000, 0.000000, 0.377075, 0.472912, 0.493075
E/mm-camera-CORE(18314): new_ew[254]=0.000000, 0.000000, 0.000000, 0.000000, 0.398438, 0.435662, 0.490263
E/mm-camera-CORE(18314): new_ew[255]=0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000
E/mm-camera(18314): is_module_start_session: Enter
E/mm-camera(18314): is_port_init: is mode is 0
E/mm-camera(18314): is_module_start_session: Exit successful
E/mm-camera(18314): is_module_get_port: Exit successful
E/mm-camera(18314): c2d_module_start_session:226, info: starting session 2
E/mm-camera(18314): c2d_module_start_session:286, info: session 2 started.
E/hdr (18314): Session id 0x2 started
E/mm-camera(18314): module_drsd_start_session:1189] E
E/mm-camera-sensor(18314): sensor_get_capabilities:2062 failed
E/mm-camera-sensor(18314): module_sensor_query_mod:2548 failed rc -4
E/mm-camera-intf(26166): mm_camera_open: opened, break out while loop
E/qomx_image_core(26166): OMX_Init:94] Complete 2
E/mm-camera(18314): [dbgHang] - Map buffer >>> enter
E/mm-camera(18314): [dbgHang] - Map buffer >>> exit with status: 1
D/QCameraPostProc(26166): static void* qcamera::QCameraPostProcessor::dataProcessRoutine(void*): E
D/QCameraPostProc(26166): static void* qcamera::QCameraPostProcessor::dataSaveRoutine(void*): E
E/mm-camera(18314): [dbgHang] - Map buffer >>> enter
E/mm-camera(18314): [dbgHang] - Map buffer >>> exit with status: 1
E/QCameraParameters(26166): int32_t qcamera::QCameraParameters::initDefaultParameters(): supported preview sizes cnt is 0 or exceeds max!!!
E/QCameraParameters(26166): int32_t qcamera::QCameraParameters::initDefaultParameters(): supported video sizes cnt is 0 or exceeds max!!!
E/QCameraParameters(26166): int32_t qcamera::QCameraParameters::initDefaultParameters(): supported picture sizes cnt is 0 or exceeds max!!!
E/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setPreviewFpsRange(int, int): Setting preview fps range 15000,30000
I/QCamera2HWI(26166): int qcamera::QCamera2HardwareInterface::calcThermalLevel(qcamera::qcamera_thermal_level_enum_t, int, int, cam_fps_range_t&, msm_vfe_frame_skip_pattern&): Thermal level 0, FPS ran
ge [15.00,30.00], frameskip 0
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setPreviewFpsRange(int, int): Thermal adjusted preview fps range 15,30
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::initDefaultParameters(): supported fps rates: 15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setFocusMode(const char*): Setting focus mode auto
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setSaturation(int): Setting saturation 5
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setSharpness(int): Setting sharpness 12
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setContrast(int): Setting contrast 5
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setSkinToneEnhancement(int): Setting skintone enhancement 0
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setBrightness(int): Setting brightness 3
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setAutoExposure(const char*): Setting auto exposure frame-average
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setAntibanding(const char*): Setting AntiBanding value auto
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setEffect(const char*): Setting effect none
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setWhiteBalance(const char*): Setting WhiteBalance value auto
E/QCameraParameters(26166): int32_t qcamera::QCameraParameters::initDefaultParameters(): supported flash modes cnt is 0!!!
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setISOValue(const char*): Setting ISO value auto
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setHighFrameRate(const char*): Setting HFR value off
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setAEBracket(const char*), EXP_BRACKETING_OFF
I/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setWaveletDenoise(const char*): Denoise enable=1, plates=0
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::initDefaultParameters(): Supported WNR:eek:N/OFF default:eek:N
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setLensShadeValue(const char*): Setting LensShade value enable
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setMCEValue(const char*): Setting AWBLock value enable
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setDISValue(const char*): Setting DIS value disable
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setSceneDetect(const char*): Setting Scene Detect off
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setAecLock(const char*): Setting AECLock value false
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setAwbLock(const char*): Setting AWBLock value false
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setNumOfSnapshot(): nBurstNum = 1, nExpnum = 1
I/Thermal-Lib(26166): Thermal-Lib-Client: Registraion successful for camera with handle:1
I/Thermal-Lib(26166): Thermal-Lib-Client: Registraion successful for camcorder with handle:2
I/QCameraHalWatchdog(26166): Stopped Watchdog Thread...
I/ThermalEngine( 294): Thermal-Server: Adding thermal event listener on fd 8
I/Thermal-Lib(26166): Thermal-Lib-Client: Client received msg camera 0
I/QCamera2HWI(26166): virtual int qcamera::QCamera2HardwareInterface::thermalEvtHandle(qcamera::qcamera_thermal_level_enum_t, void*, void*): level = 0, userdata = 0x0, data = 0x0
I/QCamera2HWI(26166): int qcamera::QCamera2HardwareInterface::calcThermalLevel(qcamera::qcamera_thermal_level_enum_t, int, int, cam_fps_range_t&, msm_vfe_frame_skip_pattern&): Thermal level 0, FPS ran
ge [15.00,30.00], frameskip 0
I/Thermal-Lib(26166): Thermal-Lib-Client: Client received msg camcorder 0
I/QCamera2HWI(26166): virtual int qcamera::QCamera2HardwareInterface::thermalEvtHandle(qcamera::qcamera_thermal_level_enum_t, void*, void*): level = 0, userdata = 0x0, data = 0x0
I/QCamera2HWI(26166): int qcamera::QCamera2HardwareInterface::calcThermalLevel(qcamera::qcamera_thermal_level_enum_t, int, int, cam_fps_range_t&, msm_vfe_frame_skip_pattern&): Thermal level 0, FPS ran
ge [15.00,30.00], frameskip 0
I/CameraMotExt( 1678): Supported
I/QCamera2HWI(26166): getParameters standard
I/QCameraHalWatchdog(26166): Starting Watchdog Thread...
I/QCamera2HWI(26166): updateParameters non-standard params: 1
D/QCameraParameters(26166): int32_t qcamera::QCameraParameters::setNumOfSnapshot(): nBurstNum = 1, nExpnum = 1
I/QCameraHalWatchdog(26166): Stopped Watchdog Thread...
I/MultisampleConfigChooser( 1678): eglChoosConfig multisample found
I/QCamera2HWI(26166): getParameters all
W/dalvikvm( 1678): threadid=13: thread exiting with uncaught exception (group=0x4168cd40)
E/AndroidRuntime( 1678): FATAL EXCEPTION: CameraHandlerThread
E/AndroidRuntime( 1678): Process: com.motorola.camera, PID: 1678
E/AndroidRuntime( 1678): java.lang.NullPointerException
E/AndroidRuntime( 1678): at com.motorola.camera.settings.Setting.asPreviewSizeList(Setting.java:363)
E/AndroidRuntime( 1678): at com.motorola.camera.settings.PictureSizeSetting$1.performRead(PictureSizeSetting.java:35)
E/AndroidRuntime( 1678): at com.motorola.camera.settings.behavior.CameraParamBehavior.performCameraRead(CameraParamBehavior.java:28)
E/AndroidRuntime( 1678): at com.motorola.camera.settings.AppSettings.readParametersIntoSettings(AppSettings.java:243)
E/AndroidRuntime( 1678): at com.motorola.camera.device.callables.ReadParamsCallable.call(ReadParamsCallable.java:38)
E/AndroidRuntime( 1678): at com.motorola.camera.device.callables.CameraCallable.run(CameraCallable.java:48)
E/AndroidRuntime( 1678): at com.motorola.camera.device.CustomIntentService$1.handleMessage(CustomIntentService.java:41)
E/AndroidRuntime( 1678): at android.os.Handler.dispatchMessage(Handler.java:98)
E/AndroidRuntime( 1678): at android.os.Looper.loop(Looper.java:136)
E/AndroidRuntime( 1678): at android.os.HandlerThread.run(HandlerThread.java:61)
W/ActivityManager(26484): Force finishing activity com.motorola.camera/.Camera
W/ResourceTexture( 1678): No bitmap to load
W/YuvTexture( 1678): No bitmap to load
D/dalvikvm(26484): GC_FOR_ALLOC freed 419K, 20% free 24093K/29924K, paused 125ms, total 126ms
W/ContextImpl(26788): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1244 android.content.ContextWrapper.sendBroadcast:365 com.motorola.motocare
.util.TriggerHelper$TriggerBuilder.send:76 com.motorola.motocare.internal.frameworkevents.PauseResumeTrigger.handleFrameworkEvent:53 com.motorola.motocare.internal.frameworkevents.FwEventMonitor$Frame
workListener.processFrameworkEvent:114
D/Sensors (26484): AccelerationSensor: Set Sensors state 0x2
D/Sensors (26484): AccelerationSensor: set delay 0
D/Checkin ( 1678): publish the event [tag = MOT_CAMERA_STATS event name = USER_EXITED_APP]
W/ActivityManager(26484): Activity pause timeout for ActivityRecord{422d93d0 u0 com.motorola.camera/.Camera t11 f}
W/ContextImpl(26788): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1244 android.content.ContextWrapper.sendBroadcast:365 com.motorola.motocare
.util.TriggerHelper$TriggerBuilder.send:76 com.motorola.motocare.internal.frameworkevents.PauseResumeTrigger.handleFrameworkEvent:53 com.motorola.motocare.internal.frameworkevents.FwEventMonitor$Frame
workListener.processFrameworkEvent:114
I/MediaFocusControl(26484): AudioFocus abandonAudioFocus() from [email protected]
I/SFPerfTracer(26124): trigger: render (32.224 ms) (7.224 ms off for 7 triggers) (7 triggers) (8 renders)
I/SFPerfTracer(26124): triggers: (rate: 3:131) (compose: 0:3) (post: 0:3) (render: 3:38) (7:1275 frames) (8:4555)
D/SFPerfTracer(26124): layers: (8:14) (DimLayer: 0:121) (FocusedStackFrame: 0:76)* (StatusBar: 8:2412) (NavigationBar: 0:517) (com.android.systemui.ImageWallpaper: 0:32) (DimLayer: 0:58)* (DimL
ayer: 0:6)* (com.anddoes.launcher/com.anddoes.launcher.Launcher: 0:32)* (Starting com.motorola.camera: 0:33)* (com.motorola.camera/com.motorola.camera.Camera: 8:17) (SurfaceView: 8:14) (Application Er
ror: com.motorola.camera: 0:16) (com.anddoes.launcher/com.anddoes.launcher.Launcher: 0:5)
I got the same problem with my camera. If it gets really bad a soft reset would do the trick. This is driving me nuts
Sent from my XT1034 using Tapatalk

[CLOSED][APP] STORYGRAM - Instagram Story Saver (Video & Photo) - Anonym Mode - (PROMO CODES)

Mod edit: Thread closed due to not functionable download link. - Regards Oswald Boelcke​
[APP] STORYGRAM - Instagram Story Saver (Video & Photo) - Anonym Mode - (PROMO CODES)
Hi, I'm developed now Instagram basic downloader for story mode.
Quickly download all stories and videos instantly.
Never using API, I'M using HTTP Skeleton on Instagram WEB***
{
"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"
}
Features:
1- Select anyone instanly
2- Download story mode (video and photo)
3-Do not see the stories you watch of story's owner. (Anonymous mode )
3- Let the storymaker know immediately. (Reminder Mode)
4- Very stylish UI
Note:
The app will be in beta, then on Google Play.
Download ALPHA
Do not forget your suggestion & comment under this topic.
Regards, Webshack.
If you want promo codes (no-ads version) please write under this topic.
Guys I need your comments here Thanks.
Reserverd
New update coming today night,
adding multiple accounts
promo code, please... thank you.....
terabyt3 said:
promo code, please... thank you.....
Click to expand...
Click to collapse
Thanks for your comment I'm so glad for here!!
I'am packing ad-free version for you.
Do you have any ideas for this app?
Webshack said:
Thanks for your comment I'm so glad for here!!
I'am packing ad-free version for you.
Do you have any ideas for this app?
Click to expand...
Click to collapse
I can not login
To be tested!
May i have a promo code?
terabyt3 said:
I can not login
Click to expand...
Click to collapse
Can you share logcat please, sorry for long time.
Webshack said:
Can you share logcat please, sorry for long time.
Click to expand...
Click to collapse
Logcat for you..
Code:
--------- beginning of main
D/OpenGLRenderer(22896): endAllActiveAnimators on 0x7f8efa2c00 (MenuPopupWindow$MenuDropDownListView) with handle 0x7f7db51720
D/AndroidRuntime(22972): >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
D/AndroidRuntime(22972): CheckJNI is OFF
D/ICU (22972): No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
I/Radio-JNI(22972): register_android_hardware_Radio DONE
D/AndroidRuntime(22972): Calling main entry com.android.commands.am.Am
D/AndroidRuntime(22972): Shutting down VM
--------- beginning of system
W/WindowManager( 1201): Attempted to remove non-existing token: [email protected]
W/ContextImpl(25839): Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1421 android.content.ContextWrapper.bindService:636 com.google.android.libraries.launcherclient.LauncherClient.connectSafely:90 com.google.android.libraries.launcherclient.LauncherClient.reconnect:268 com.google.android.libraries.launcherclient.LauncherClient.onResume:246
W/ActivityManager( 1201): Unable to start service Intent { act=com.android.launcher3.WINDOW_OVERLAY dat=app://ch.deletescape.lawnchair:1000?v=5 pkg=com.google.android.googlequicksearchbox } U=0: not found
W/OpenGLRenderer(25839): Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
W/WindowManager( 1201): Attempted to remove non-existing token: [email protected]
I/ActivityManager( 1201): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=webshack.story.gram/.LoginActivity bnds=[643,415][849,716] (has extras)} from uid 1000 on display 0
I/TextInputLayout(22820): EditText added is not a TextInputEditText. Please switch to using that class instead.
I/TextInputLayout(22820): EditText added is not a TextInputEditText. Please switch to using that class instead.
W/MixpanelAPI.ConfigurationChecker(22820): com.mixpanel.android.surveys.SurveyActivity is not registered as an activity in your application, so surveys can't be shown.
I/MixpanelAPI.ConfigurationChecker(22820): Please add the child tag <activity android:name="com.mixpanel.android.surveys.SurveyActivity" /> to your <application> tag.
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
I/ActivityManager( 1201): Displayed webshack.story.gram/.LoginActivity: +84ms
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
D/StatusBar( 1662): notification is for you
E/ANDR-PERF-OPTSHANDLER( 446): perf_lock_rel: updated /sys/class/scsi_host/host0/../../../clkscale_enable with 1
E/ANDR-PERF-OPTSHANDLER( 446): return value 2
I/PlayCommon(30203): [764] com.google.android.play.a.g.e(244): Preparing logs for uploading
I/PlayCommon(30203): [764] com.google.android.play.a.g.a(458): Connecting to server: https://play.googleapis.com/play/log?format=raw&proto_v2=true
I/DpmTcmClient(30203): RegisterTcmMonitor from: com.android.okhttp.TcmIdleTimerMonitor
I/PlayCommon(30203): [764] com.google.android.play.a.g.a(515): Successfully uploaded logs.
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
W/IInputConnectionWrapper(22820): finishComposingText on inactive InputConnection
D/StatusBar( 1662): notification is for you
D/StatusBar( 1662): notification is for you
E/System (22820): Uncaught exception thrown by finalizer
E/System (22820): java.lang.IllegalStateException: The database '/data/user/0/webshack.story.gram/databases/google_app_measurement_local.db' is not open.
E/System (22820): at android.database.sqlite.SQLiteDatabase.throwIfNotOpenLocked(SQLiteDatabase.java:2196)
E/System (22820): at android.database.sqlite.SQLiteDatabase.createSession(SQLiteDatabase.java:367)
E/System (22820): at android.database.sqlite.SQLiteDatabase$1.initialValue(SQLiteDatabase.java:86)
E/System (22820): at android.database.sqlite.SQLiteDatabase$1.initialValue(SQLiteDatabase.java:85)
E/System (22820): at java.lang.ThreadLocal.setInitialValue(ThreadLocal.java:160)
E/System (22820): at java.lang.ThreadLocal.get(ThreadLocal.java:150)
E/System (22820): at android.database.sqlite.SQLiteDatabase.getThreadSession(SQLiteDatabase.java:361)
E/System (22820): at android.database.sqlite.SQLiteProgram.getSession(SQLiteProgram.java:101)
E/System (22820): at android.database.sqlite.SQLiteQuery.setLastStmt(SQLiteQuery.java:96)
E/System (22820): at android.database.sqlite.SQLiteQuery.close(SQLiteQuery.java:111)
E/System (22820): at android.database.sqlite.SQLiteCursor.close(SQLiteCursor.java:300)
E/System (22820): at android.database.sqlite.SQLiteCursor.finalize(SQLiteCursor.java:366)
E/System (22820): at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:222)
E/System (22820): at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:209)
E/System (22820): at java.lang.Thread.run(Thread.java:761)
D/UI thread(22820): I am the UI thread
V/tata (22820): 0
W/InputMethodManagerService( 1201): Window already focused, ignoring focus gain of: [email protected] attribute=null, token = [email protected]
--------- beginning of crash
E/AndroidRuntime(22820): FATAL EXCEPTION: Thread-9
E/AndroidRuntime(22820): Process: webshack.story.gram, PID: 22820
E/AndroidRuntime(22820): java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
E/AndroidRuntime(22820): at android.os.Handler.<init>(Handler.java:200)
E/AndroidRuntime(22820): at android.os.Handler.<init>(Handler.java:114)
E/AndroidRuntime(22820): at android.widget.Toast$TN$2.<init>(Toast.java:339)
E/AndroidRuntime(22820): at android.widget.Toast$TN.<init>(Toast.java:339)
E/AndroidRuntime(22820): at android.widget.Toast.<init>(Toast.java:106)
E/AndroidRuntime(22820): at android.widget.Toast.makeText(Toast.java:259)
E/AndroidRuntime(22820): at webshack.story.gram.LoginActivity$3.run(LoginActivity.java:132)
E/AndroidRuntime(22820): at java.lang.Thread.run(Thread.java:761)
W/ActivityManager( 1201): Force finishing activity webshack.story.gram/.LoginActivity
W/ContextImpl( 1201): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:877 com.android.server.am.AppErrors.crashApplicationInner:375 com.android.server.am.AppErrors.crashApplication:309 com.android.server.am.ActivityManagerService.handleApplicationCrashInner:13761 com.android.server.am.ActivityManagerService.handleApplicationCrash:13743
W/ContextImpl(25839): Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1421 android.content.ContextWrapper.bindService:636 com.google.android.libraries.launcherclient.LauncherClient.connectSafely:90 com.google.android.libraries.launcherclient.LauncherClient.reconnect:268 com.google.android.libraries.launcherclient.LauncherClient.onResume:246
W/ActivityManager( 1201): Unable to start service Intent { act=com.android.launcher3.WINDOW_OVERLAY dat=app://ch.deletescape.lawnchair:1000?v=5 pkg=com.google.android.googlequicksearchbox } U=0: not found
I/OpenGLRenderer( 1201): Initialized EGL, version 1.4
D/OpenGLRenderer( 1201): Swap behavior 1
I/ActivityManager( 1201): Killing 20500:com.ss.android.article.master.id/u0a82 (adj 906): empty for 1857s
D/ActivityManager( 1201): cleanUpApplicationRecord -- 20500
E/MMSDK-Handshake <1239:1504304310863>(22058): Handshake request failed with HTTP response code: 408
W/OpenGLRenderer(25839): Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
D/LuxLevels( 1201): bright hysteresis constant= 0.1, threshold=8.314652, lux=7.5587745
D/LuxLevels( 1201): dark hysteresis constant= 0.2, threshold=6.0470195, lux=7.5587745
I/ActivityManager( 1201): Killing 22820:webshack.story.gram/u0a80 (adj 900): crash
D/ActivityManager( 1201): cleanUpApplicationRecord -- 22820
W/InputEventReceiver( 1201): Attempted to finish an input event but the input event receiver has already been disposed.
D/GraphicsStats( 1201): Buffer count: 7
D/StatusBar( 1662): notification is for you
E/FullInputEventModel( 1649): selectionUpdated event aborted: com.touchtype.keyboard.e.p: Could not create selection changed event (class com.touchtype.keyboard.e.p)
W/AppOps ( 1201): Finishing op nesting under-run: uid 1000 pkg android code 24 time=0 duration=0 nesting=0
I/ActivityManager( 1201): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=rs.pedjaapps.alogcatroot.app/.LogActivity bnds=[643,251][849,552] (has extras)} from uid 1000 on display 0
I/ActivityManager( 1201): Displayed rs.pedjaapps.alogcatroot.app/.LogActivity: +119ms
D/AndroidRuntime(23051): >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
D/AndroidRuntime(23051): CheckJNI is OFF
D/ICU (23051): No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
I/Radio-JNI(23051): register_android_hardware_Radio DONE
D/AndroidRuntime(23051): Calling main entry com.android.commands.am.Am
D/AndroidRuntime(23051): Shutting down VM
W/WindowManager( 1201): Attempted to remove non-existing token: [email protected]
E/ANDR-PERF-OPTSHANDLER( 446): perf_lock_rel: updated /sys/class/scsi_host/host0/../../../clkscale_enable with 1
E/ANDR-PERF-OPTSHANDLER( 446): return value 2
W/WindowManager( 1201): Attempted to remove non-existing token: [email protected]
D/QcrilMsgTunnelSocket( 1841): readRilMessage: Buffer = [[email protected] HexData = [010000000404000011000000514f454d484f4f4bef0308000100000002]
D/QcrilMsgTunnelSocket( 1841): Rcvd UNSOL response with 28 bytes data for SUB0
D/QcrilMsgTunnelSocket( 1841): Response ID 525295 is not served in this process.
D/QcrilMsgTunnelSocket( 1841): To broadcast an Intent via the notifier to external apps
D/QcrilMsgTunnelIfaceManager( 1841): handleMessage what = 0
D/QC_RIL_OEM_HOOK( 1864): Received Broadcast Intent ACTION_UNSOL_RESPONSE_OEM_HOOK_RAW
D/QC_RIL_OEM_HOOK( 1864): Oem ID in QCRILHOOK UNSOL RESP is QOEMHOOK
terabyt3 said:
Logcat for you..
Code:
--------- beginning of main
D/OpenGLRenderer(22896): endAllActiveAnimators on 0x7f8efa2c00 (MenuPopupWindow$MenuDropDownListView) with handle 0x7f7db51720
D/AndroidRuntime(22972): >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
D/AndroidRuntime(22972): CheckJNI is OFF
D/ICU (22972): No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
I/Radio-JNI(22972): register_android_hardware_Radio DONE
D/AndroidRuntime(22972): Calling main entry com.android.commands.am.Am
D/AndroidRuntime(22972): Shutting down VM
--------- beginning of system
W/WindowManager( 1201): Attempted to remove non-existing token: [email protected]
W/ContextImpl(25839): Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1421 android.content.ContextWrapper.bindService:636 com.google.android.libraries.launcherclient.LauncherClient.connectSafely:90 com.google.android.libraries.launcherclient.LauncherClient.reconnect:268 com.google.android.libraries.launcherclient.LauncherClient.onResume:246
W/ActivityManager( 1201): Unable to start service Intent { act=com.android.launcher3.WINDOW_OVERLAY dat=app://ch.deletescape.lawnchair:1000?v=5 pkg=com.google.android.googlequicksearchbox } U=0: not found
W/OpenGLRenderer(25839): Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
W/WindowManager( 1201): Attempted to remove non-existing token: [email protected]
I/ActivityManager( 1201): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=webshack.story.gram/.LoginActivity bnds=[643,415][849,716] (has extras)} from uid 1000 on display 0
I/TextInputLayout(22820): EditText added is not a TextInputEditText. Please switch to using that class instead.
I/TextInputLayout(22820): EditText added is not a TextInputEditText. Please switch to using that class instead.
W/MixpanelAPI.ConfigurationChecker(22820): com.mixpanel.android.surveys.SurveyActivity is not registered as an activity in your application, so surveys can't be shown.
I/MixpanelAPI.ConfigurationChecker(22820): Please add the child tag <activity android:name="com.mixpanel.android.surveys.SurveyActivity" /> to your <application> tag.
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
I/ActivityManager( 1201): Displayed webshack.story.gram/.LoginActivity: +84ms
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
D/StatusBar( 1662): notification is for you
E/ANDR-PERF-OPTSHANDLER( 446): perf_lock_rel: updated /sys/class/scsi_host/host0/../../../clkscale_enable with 1
E/ANDR-PERF-OPTSHANDLER( 446): return value 2
I/PlayCommon(30203): [764] com.google.android.play.a.g.e(244): Preparing logs for uploading
I/PlayCommon(30203): [764] com.google.android.play.a.g.a(458): Connecting to server: https://play.googleapis.com/play/log?format=raw&proto_v2=true
I/DpmTcmClient(30203): RegisterTcmMonitor from: com.android.okhttp.TcmIdleTimerMonitor
I/PlayCommon(30203): [764] com.google.android.play.a.g.a(515): Successfully uploaded logs.
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(22820): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
W/IInputConnectionWrapper(22820): finishComposingText on inactive InputConnection
D/StatusBar( 1662): notification is for you
D/StatusBar( 1662): notification is for you
E/System (22820): Uncaught exception thrown by finalizer
E/System (22820): java.lang.IllegalStateException: The database '/data/user/0/webshack.story.gram/databases/google_app_measurement_local.db' is not open.
E/System (22820): at android.database.sqlite.SQLiteDatabase.throwIfNotOpenLocked(SQLiteDatabase.java:2196)
E/System (22820): at android.database.sqlite.SQLiteDatabase.createSession(SQLiteDatabase.java:367)
E/System (22820): at android.database.sqlite.SQLiteDatabase$1.initialValue(SQLiteDatabase.java:86)
E/System (22820): at android.database.sqlite.SQLiteDatabase$1.initialValue(SQLiteDatabase.java:85)
E/System (22820): at java.lang.ThreadLocal.setInitialValue(ThreadLocal.java:160)
E/System (22820): at java.lang.ThreadLocal.get(ThreadLocal.java:150)
E/System (22820): at android.database.sqlite.SQLiteDatabase.getThreadSession(SQLiteDatabase.java:361)
E/System (22820): at android.database.sqlite.SQLiteProgram.getSession(SQLiteProgram.java:101)
E/System (22820): at android.database.sqlite.SQLiteQuery.setLastStmt(SQLiteQuery.java:96)
E/System (22820): at android.database.sqlite.SQLiteQuery.close(SQLiteQuery.java:111)
E/System (22820): at android.database.sqlite.SQLiteCursor.close(SQLiteCursor.java:300)
E/System (22820): at android.database.sqlite.SQLiteCursor.finalize(SQLiteCursor.java:366)
E/System (22820): at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:222)
E/System (22820): at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:209)
E/System (22820): at java.lang.Thread.run(Thread.java:761)
D/UI thread(22820): I am the UI thread
V/tata (22820): 0
W/InputMethodManagerService( 1201): Window already focused, ignoring focus gain of: [email protected] attribute=null, token = [email protected]
--------- beginning of crash
E/AndroidRuntime(22820): FATAL EXCEPTION: Thread-9
E/AndroidRuntime(22820): Process: webshack.story.gram, PID: 22820
E/AndroidRuntime(22820): java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
E/AndroidRuntime(22820): at android.os.Handler.<init>(Handler.java:200)
E/AndroidRuntime(22820): at android.os.Handler.<init>(Handler.java:114)
E/AndroidRuntime(22820): at android.widget.Toast$TN$2.<init>(Toast.java:339)
E/AndroidRuntime(22820): at android.widget.Toast$TN.<init>(Toast.java:339)
E/AndroidRuntime(22820): at android.widget.Toast.<init>(Toast.java:106)
E/AndroidRuntime(22820): at android.widget.Toast.makeText(Toast.java:259)
E/AndroidRuntime(22820): at webshack.story.gram.LoginActivity$3.run(LoginActivity.java:132)
E/AndroidRuntime(22820): at java.lang.Thread.run(Thread.java:761)
W/ActivityManager( 1201): Force finishing activity webshack.story.gram/.LoginActivity
W/ContextImpl( 1201): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:877 com.android.server.am.AppErrors.crashApplicationInner:375 com.android.server.am.AppErrors.crashApplication:309 com.android.server.am.ActivityManagerService.handleApplicationCrashInner:13761 com.android.server.am.ActivityManagerService.handleApplicationCrash:13743
W/ContextImpl(25839): Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1421 android.content.ContextWrapper.bindService:636 com.google.android.libraries.launcherclient.LauncherClient.connectSafely:90 com.google.android.libraries.launcherclient.LauncherClient.reconnect:268 com.google.android.libraries.launcherclient.LauncherClient.onResume:246
W/ActivityManager( 1201): Unable to start service Intent { act=com.android.launcher3.WINDOW_OVERLAY dat=app://ch.deletescape.lawnchair:1000?v=5 pkg=com.google.android.googlequicksearchbox } U=0: not found
I/OpenGLRenderer( 1201): Initialized EGL, version 1.4
D/OpenGLRenderer( 1201): Swap behavior 1
I/ActivityManager( 1201): Killing 20500:com.ss.android.article.master.id/u0a82 (adj 906): empty for 1857s
D/ActivityManager( 1201): cleanUpApplicationRecord -- 20500
E/MMSDK-Handshake <1239:1504304310863>(22058): Handshake request failed with HTTP response code: 408
W/OpenGLRenderer(25839): Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer...
D/LuxLevels( 1201): bright hysteresis constant= 0.1, threshold=8.314652, lux=7.5587745
D/LuxLevels( 1201): dark hysteresis constant= 0.2, threshold=6.0470195, lux=7.5587745
I/ActivityManager( 1201): Killing 22820:webshack.story.gram/u0a80 (adj 900): crash
D/ActivityManager( 1201): cleanUpApplicationRecord -- 22820
W/InputEventReceiver( 1201): Attempted to finish an input event but the input event receiver has already been disposed.
D/GraphicsStats( 1201): Buffer count: 7
D/StatusBar( 1662): notification is for you
E/FullInputEventModel( 1649): selectionUpdated event aborted: com.touchtype.keyboard.e.p: Could not create selection changed event (class com.touchtype.keyboard.e.p)
W/AppOps ( 1201): Finishing op nesting under-run: uid 1000 pkg android code 24 time=0 duration=0 nesting=0
I/ActivityManager( 1201): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=rs.pedjaapps.alogcatroot.app/.LogActivity bnds=[643,251][849,552] (has extras)} from uid 1000 on display 0
I/ActivityManager( 1201): Displayed rs.pedjaapps.alogcatroot.app/.LogActivity: +119ms
D/AndroidRuntime(23051): >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
D/AndroidRuntime(23051): CheckJNI is OFF
D/ICU (23051): No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
I/Radio-JNI(23051): register_android_hardware_Radio DONE
D/AndroidRuntime(23051): Calling main entry com.android.commands.am.Am
D/AndroidRuntime(23051): Shutting down VM
W/WindowManager( 1201): Attempted to remove non-existing token: [email protected]
E/ANDR-PERF-OPTSHANDLER( 446): perf_lock_rel: updated /sys/class/scsi_host/host0/../../../clkscale_enable with 1
E/ANDR-PERF-OPTSHANDLER( 446): return value 2
W/WindowManager( 1201): Attempted to remove non-existing token: [email protected]
D/QcrilMsgTunnelSocket( 1841): readRilMessage: Buffer = [[email protected] HexData = [010000000404000011000000514f454d484f4f4bef0308000100000002]
D/QcrilMsgTunnelSocket( 1841): Rcvd UNSOL response with 28 bytes data for SUB0
D/QcrilMsgTunnelSocket( 1841): Response ID 525295 is not served in this process.
D/QcrilMsgTunnelSocket( 1841): To broadcast an Intent via the notifier to external apps
D/QcrilMsgTunnelIfaceManager( 1841): handleMessage what = 0
D/QC_RIL_OEM_HOOK( 1864): Received Broadcast Intent ACTION_UNSOL_RESPONSE_OEM_HOOK_RAW
D/QC_RIL_OEM_HOOK( 1864): Oem ID in QCRILHOOK UNSOL RESP is QOEMHOOK
Click to expand...
Click to collapse
Fixed Enjoy new version !!
promo code please
aalmog23 said:
promo code please
Click to expand...
Click to collapse
Sent Enjoy your code.
Webshack said:
Sent Enjoy your code.
Click to expand...
Click to collapse
Sorry, do you have suggestion for this app ?
I need wait time fro no-ads version for sending box.
Promo Code please
I want to try the pro version
can i have a promo code please
vinax89 said:
Promo Code please
Click to expand...
Click to collapse
I will send while coding beta version on Google Play
Thanks. Do you have any comment?
Yahia700 said:
can i have a promo code please
Click to expand...
Click to collapse
It's alpha now.
What do you think about StoryGram?
Updated new version alpha 1.0.3.
In this morning I will change link !

Categories

Resources