V1-T是否支持sglte svlte

c# - Unity WWW request and multidevices? Error!! Help Me please - Stack Overflow
to customize your list.
Join the Stack Overflow Community
Stack Overflow is a community of 6.2 million programmers, just like you, helping each other.
J it only takes a minute:
I have one problem with my Android App in Unity 4.6.1f1.
I have created one C# script for get data from MySQL passing from PHP, and I use WWW request and it work fine, but when I open the App in two or more devices, the firt App that I have started died.
I think that it is a problem of WWW request, because if I open my app in only one device, it works successfully (without any problem).
Another thing is that when I open the app with two devices, the first one check the internet connection and say "CONNECTED" the other one say "NOT CONNECTED", and after 10/20 seconds it say "CONNECTED".
The C# code for get data from PHP:
public IEnumerator GetMessage()
WWW hs_get = new WWW(highscoreURL);
yield return hs_
if (hs_get.error != null)
if(hs_get.text != "")
// DO ALL TASKS HERE
The C# code for check connection:
private void CheckForInternetConnection()
while(true)
System.Threading.Thread.Sleep(1000);
using (WebClient client = new WebClient())
using (System.IO.Stream stream = client.OpenRead("/"))
Debug.LogWarning("Online");
connected =
// NOT CONNECTED
connected =
The Samsung Galaxy Tab 8.0 Logcat:
First open my App on Tablet after on Smartphone (Died on Tablet)
D/dalvikvm(30918): GC_FOR_ALLOC freed 1809K, 23% free 1K, paused 84ms, total 84ms
W/dalvikvm(30918): threadid=771: thread exiting with uncaught exception (group=0x41be4c08)
W/dalvikvm(30918): threadid=34: thread exiting with uncaught exception (group=0x41be4c08)
E/AndroidRuntime(30918): FATAL EXCEPTION: Thread-34969
E/AndroidRuntime(30918): Process: com.SteeBono.CilyCube, PID: 30918
E/AndroidRuntime(30918): java.lang.Error: FATAL EXCEPTION [Thread-34969]
E/AndroidRuntime(30918): Unity version
E/AndroidRuntime(30918): Device model
: samsung GT-N5110
E/AndroidRuntime(30918): Device fingerprint: samsung/konawifixx/konawifi:4.4.2/KOT49H/N5110XXDNF1:user/release-keys
E/AndroidRuntime(30918):
E/AndroidRuntime(30918): Caused by: java.lang.NullPointerException
E/AndroidRuntime(30918):
at java.net.NetworkInterface.getNetworkInterfacesList(NetworkInterface.java:304)
E/AndroidRuntime(30918):
at java.net.NetworkInterface.getByInetAddress(NetworkInterface.java:264)
E/AndroidRuntime(30918):
at com.android.okhttp.internal.Platform.getMtu(Platform.java:117)
E/AndroidRuntime(30918):
at com.android.okhttp.Connection.connect(Connection.java:111)
E/AndroidRuntime(30918):
at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:294)
E/AndroidRuntime(30918):
com.android.okhttp.internal.http.HttpEngine.sendSocketRequest(HttpEngine.java:255)
E/AndroidRuntime(30918):
at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:206)
E/AndroidRuntime(30918):
at com.android.okhttp.internal.http.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:345)
E/AndroidRuntime(30918):
at com.android.okhttp.internal.http.HttpURLConnectionImpl.getResponse(HttpURLConnectionImpl.java:296)
E/AndroidRuntime(30918):
at com.android.okhttp.internal.http.HttpURLConnectionImpl.getResponseCode(HttpURLConnectionImpl.java:503)
E/AndroidRuntime(30918):
at com.unity3d.player.WWW.run(Unknown Source)
W/ActivityManager( 2224):
Force finishing activity com.SteeBono.CilyCube/com.unity3d.player.UnityPlayerNativeActivity
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
I/dumpstate(18149): begin
V/AudioFlinger( 1822): stop(4109), calling pid 30918
V/AudioFlinger( 1822): not stopping/stopped =& stopping/stopped (4109) on thread 0x
V/AudioFlinger( 1822): presentationComplete() mPresentationCompleteFrames 0 framesWritten 2553856
V/AudioFlinger( 1822): presentationComplete() reset: mPresentationCompleteFrames 2557913 audioHalFrames 4057
V/AudioFlinger( 1822): presentationComplete() mPresentationCompleteFrames 2557913 framesWritten 2553856
V/AudioFlinger( 1822): presentationComplete() mPresentationCompleteFrames 2557913 framesWritten 2554880
V/AudioFlinger( 1822): presentationComplete() mPresentationCompleteFrames 2557913 framesWritten 2554880
V/AudioFlinger( 1822): presentationComplete() mPresentationCompleteFrames 2557913 framesWritten 2555904
D/dalvikvm( 2224): GC_FOR_ALLOC freed 2668K, 23% free 2K, paused 155ms, total 156ms
I/dalvikvm-heap( 2224): Grow heap (frag case) to 30.347MB for 496920-byte allocation
V/AudioFlinger( 1822): presentationComplete() mPresentationCompleteFrames 2557913 framesWritten 2555904
V/AudioFlinger( 1822): presentationComplete() mPresentationCompleteFrames 2557913 framesWritten 2556928
V/AudioFlinger( 1822): presentationComplete() session 162 complete: framesWritten 2557952
V/LvOutput( 1822): initCheck: 0
V/LvOutput( 1822): detachEffects: detach processing for output 2, stream 3, session 162
V/LvOutput( 1822): detachEffects: no output processing was attached to this stream
V/AudioFlinger( 1822): PlaybackThread::Track destructor
V/AudioPolicyManagerBase( 1822): stopOutput() output 2, stream 3, session 162
V/AudioPolicyManagerBase( 1822): changeRefCount() stream 3, count 0
W/AudioPolicyManagerBase( 1822): stream type [13], return media strategy
V/AudioPolicyManagerBase( 1822): getNewDevice() selected device 0
V/AudioPolicyManagerBase( 1822): setOutputDevice() output 2 device 0000 force 0 delayMs 184
V/AudioPolicyManagerBase( 1822): setOutputDevice() prevDevice 0002
W/AudioPolicyManagerBase( 1822): stream type [13], return media strategy
W/AudioPolicyManagerBase( 1822): stream type [13], return media strategy
V/AudioPolicyManagerBase( 1822): setOutputDevice() setting same device 0000 or null device for output 2
V/AudioPolicyManagerBase( 1822): getOutputsForDevice device 0002 -& 0002
V/AudioPolicyManagerBase( 1822): getOutputsForDevice device 0002 -& 0002
V/AudioPolicyManagerBase( 1822): releaseOutput() 2
E/android.os.Debug( 2224): !@Dumpstate & sdumpstate -k -t -z -d -o /data/log/dumpstate_app_error
D/dalvikvm( 2224): GC_FOR_ALLOC freed 7K, 22% free 2K, paused 139ms, total 139ms
V/AlarmManager( 2224): waitForAlarm result :4
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
V/AlarmManager( 2224): trigger ELAPSED_REALTIME_WAKEUP or RTC_WAKEUP
D/STATUSBAR-StatusBarManagerService( 2224): manageDisableList what=0x0 pkg=WindowManager.LayoutParams
D/PointerIcon( 2224): setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
D/PointerIcon( 2224): setMouseCustomIcon IconType is same.101
D/PointerIcon( 2224): setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
D/PointerIcon( 2224): setHoveringSpenCustomIcon IconType is same.1
D/CrashAnrDetector( 2224): processName: com.SteeBono.CilyCube
V/WindowManager( 2224): rotationForOrientationLw(orient=-1, last=1); user=0
sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false mAccelerometerDefault=false gripRotationLock=false
D/CrashAnrDetector( 2224): broadcastEvent : com.SteeBono.CilyCube data_app_crash
W/ContextImpl( 2224): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1523 com.android.server.analytics.data.collection.application.CrashAnrDetector.broadcastEvent:296 com.android.server.analytics.data.collection.application.CrashAnrDetector.processDropBoxEntry:254 com.android.server.analytics.data.collection.application.CrashAnrDetector.access$100:60 com.android.server.analytics.data.collection.application.CrashAnrDetector$1.onReceive:102
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
I/SurfaceFlinger( 1818): id=365 createSurf (1x1),1 flag=4, DilyCube
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
W/ContextImpl( 2224): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1509 com.android.internal.policy.impl.PhoneWindowManager.notifyToSSRM:5945 com.android.internal.policy.impl.PhoneWindowManager.access$200:188 com.android.internal.policy.impl.PhoneWindowManager$PolicyHandler.handleMessage:735 android.os.Handler.dispatchMessage:102
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/SSRMv2:TSP:AirViewOnOff( 2224): DeviceInfo::
D/SSRMv2:TSP:AirViewOnOff( 2224): SettingsAirViewInfo::
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
W/dalvikvm( 2224): No implementation found for native Ldalvik/system/VMR.pauseGc:(Ljava/lang/S)I
D/CustomFrequencyManagerService( 2224): acquireDVFSLockLocked : type : DVFS_MIN_LIMIT
frequency : 1200000
uid : 1000
pid : 2224
pkgName : ACTIVITY_RESUME_BOOSTER@5
W/ActivityManager( 2224): mDVFSHelper.acquire()
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/Launcher( 2570): onRestart, Launcher:
D/Launcher( 2570): onStart, Launcher:
D/Launcher.HomeView( 2570): onStart
D/Launcher( 2570): onResume, Launcher:
D/Launcher.HomeView( 2570): onResume
D/StatusBarManagerService( 2224): semi p:2570,o:f
D/StatusBarManagerService( 2224): tr p:2570,o:f
D/PhoneStatusBar( 2432): setSemiTransparentMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
D/PhoneStatusBar( 2432): setTransGradationMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
D/MenuAppsGridFragment( 2570): onResume
D/ActivityManager( 2224): resume name com.sec.android.app.launcher/com.android.launcher2.Launcher
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
D/ProgramMonitor( 5065): LAUNCHER_RESUME
D/ProgramMonitor( 5065): isWidgetEnabled:0
mViews:android.widget.RemoteViews@4227ade0
D/ProgramMonitor( 5065): startWidgetsUpdating()
I/SurfaceFlinger( 1818): id=366 createSurf ( flag=4, Mauncher
W/ContextImpl( 5065): Implicit intents with startService are not safe: Intent { act=com.sec.android.app.controlpanel.service.REMOTE_SERVICE (has extras) } android.content.ContextWrapper.startService:506 com.sec.android.widgetapp.programmonitorwidget.ProgramMonitorProvider.startWidgetsUpdating:252 com.sec.android.widgetapp.programmonitorwidget.ProgramMonitorProvider.onReceive:337
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
V/TaskCloserActivity( 5065): TaskCloserActivity onReceive()
W/ContextImpl( 5065): Implicit intents with startService are not safe: Intent { act=com.sec.android.app.controlpanel.service.REMOTE_SERVICE } android.content.ContextWrapper.bindService:529 com.sec.android.widgetapp.programmonitorwidget.taskcloser.TaskCloserActivity.onReceive:371 com.sec.android.widgetapp.programmonitorwidget.ProgramMonitorProvider.onReceive:423
D/dalvikvm(30918): GC_FOR_ALLOC freed 1791K, 24% free 1K, paused 129ms, total 129ms
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/dalvikvm( 2570): GC_CONCURRENT freed 9359K, 34% free 2K, paused 3ms+13ms, total 132ms
D/dalvikvm( 2570): WAIT_FOR_CONCURRENT_GC blocked 87ms
V/RenderScript( 2570): 0x Launching thread(s), CPUs 4
D/SensorService( 2224):
0.4 0.4 9.3
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/BarController.StatusBar( 2224): mState: WINDOW_STATE_SHOWING
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/STATUSBAR-StatusBarManagerService( 2224): manageDisableList what=0x0 pkg=WindowManager.LayoutParams
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/PhoneStatusBar( 2432): Status bar WINDOW_STATE_SHOWING
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/CustomFrequencyManagerService( 2224): releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT
frequency : 1200000
uid : 1000
pid : 2224
tag : ACTIVITY_RESUME_BOOSTER@5
W/ActivityManager( 2224): mDVFSHelper.release()
D/CustomFrequencyManagerService( 2224): acquireDVFSLockLocked : type : DVFS_MIN_LIMIT
frequency : 1200000
uid : 1000
pid : 2224
pkgName : ACTIVITY_RESUME_BOOSTER@9
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/dalvikvm(30918): GC_FOR_ALLOC freed 1797K, 25% free 1K, paused 79ms, total 79ms
D/CustomFrequencyManagerService( 2224): releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT
frequency : 1200000
uid : 1000
pid : 2224
tag : ACTIVITY_RESUME_BOOSTER@9
D/BatteryService( 2224): level:78, scale:100, status:3, health:2, present:true, voltage: 3984, temperature: 283, technology: Li-ion, AC powered:false, USB powered:true, Wireless powered:false, icon:, invalid charger:0, online:4, current avg:460, charge type:1, power sharing:false
D/BatteryService( 2224): Sending ACTION_BATTERY_CHANGED.
D/KeyguardUpdateMonitor( 2432): received broadcast android.intent.action.BATTERY_CHANGED
D/KeyguardUpdateMonitor( 2432): handleBatteryUpdate
D/STATUSBAR-PhoneStatusBar( 2432):
mBrightnessEnablebySettings = true mBrightnessEnablebyBattery = true mBrightnessEnablebyDisableFlag = true mPmsBrightnessEnablebySettings = true
D/BatteryMeterView( 2432): ACTION_BATTERY_CHANGED : level:78 status:3 health:2
D/STATUSBAR-IconMerger( 2432): checkOverflow(1040), More:false, Req:false Child:2
D/dalvikvm( 3230): GC_CONCURRENT freed 2014K, 36% free K, paused 2ms+4ms, total 24ms
D/dalvikvm( 3230): WAIT_FOR_CONCURRENT_GC blocked 9ms
D/dalvikvm(30918): GC_FOR_ALLOC freed 1529K, 26% free 1K, paused 96ms, total 96ms
V/TaskCloserActivity( 5065): TaskCloserActivity onReceive()
D/SSRMv2:SIOP( 2224): SIOP:: AP = 380, Delta = 0
D/SensorService( 2224):
0.3 0.3 9.2
D/dalvikvm( 3230): GC_CONCURRENT freed 2027K, 36% free K, paused 2ms+2ms, total 24ms
D/dalvikvm( 3230): WAIT_FOR_CONCURRENT_GC blocked 6ms
V/TaskCloserActivity( 5065): TaskCloserActivity resetList mRunningItems.clear
V/TaskCloserActivity( 5065): TaskCloserActivity resetList runningAppsCount : 1
V/TaskCloserActivity( 5065): TaskCloserActivity tnails == null
D/ProgramMonitor( 5065): Active Applications count = 1
V/TaskCloserActivity( 5065): TaskCloserActivity onReceive()
D/dalvikvm(30918): GC_FOR_ALLOC freed 1640K, 26% free 1K, paused 53ms, total 53ms
D/dalvikvm(30918): GC_FOR_ALLOC freed 1708K, 27% free 1K, paused 61ms, total 62ms
D/SensorService( 2224):
0.3 0.3 9.3
I/InputReader( 2224): Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.337 ] when=00
I/InputDispatcher( 2224): Delivering touch to: action: 0x4, toolType: 1
I/InputDispatcher( 2224): Delivering touch to: action: 0x0, toolType: 1
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
I/InputReader( 2224): Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=00
I/InputDispatcher( 2224): Delivering touch to: action: 0x1, toolType: 1
I/Process (30918): Sending signal. PID: 30918 SIG: 9
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
D/STATUSBAR-StatusBarManagerService( 2224): manageDisableList what=0x0 pkg=WindowManager.LayoutParams
D/PointerIcon( 2224): setMouseIconStyle1 pointerType: 1001iconType:101 flag:0
E/ViewRootImpl( 2224): sendUserActionEvent() mView == null
D/AudioHardwareTinyALSA( 1822): Entering AudioStreamOutALSA standby mode
I/AudioHardwareTinyALSA( 1822): Close mHandle:42e479a0
D/PhoneStatusBar( 2432): setTransGradationMode=false, mTransparentMode=false, mSemiTransparentMode=false, mMultiWindowMode=false
D/PointerIcon( 2224): setMouseCustomIcon IconType is same.101
D/PointerIcon( 2224): setHoveringSpenIconStyle1 pointerType: 10001iconType:1 flag:0
D/PointerIcon( 2224): setHoveringSpenCustomIcon IconType is same.1
D/StatusBarManagerService( 2224): tr p:2570,o:f
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
I/ServiceKeeper( 2224): In getseinfo pid = 2224 uid = 1000 seinfo= system
W/ContextImpl( 2224): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1509 com.android.server.InputMethodManagerService$4.run:2683 java.lang.Thread.run:841 &bottom of call stack& &bottom of call stack&
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
I/SurfaceFlinger( 1818): id=365 Removed DilyCube (11/13)
I/SurfaceFlinger( 1818): id=365 Removed DilyCube (-2/13)
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
W/InputDispatcher( 2224): channel ~ Consumer closed input channel or an error occurred.
events=0x9
E/InputDispatcher( 2224): channel ~ Channel is unrecoverably broken and will be disposed!
I/SurfaceFlinger( 1818): id=362 Removed TurfaceView (8/12)
I/WindowState( 2224): WIN DEATH: Window{ SurfaceView}
I/ActivityManager( 2224): Process com.SteeBono.CilyCube (pid 30918) (adj 9) has died.
I/SurfaceFlinger( 1818): id=362 Removed TurfaceView (-2/12)
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
W/InputDispatcher( 2224): Attempted to unregister already unregistered input channel
I/WindowState( 2224): WIN DEATH: Window{
com.SteeBono.CilyCube/com.unity3d.player.UnityPlayerNativeActivity}
I/SurfaceFlinger( 1818): id=361 Removed VnityPlayer (8/11)
I/SurfaceFlinger( 1818): id=361 Removed VnityPlayer (-2/11)
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
I/SurfaceFlinger( 1818): id=359 Removed EimLayer (4/10)
I/SurfaceFlinger( 1818): id=358 Removed EimLayer (3/9)
I/SurfaceFlinger( 1818): id=359 Removed EimLayer (-2/9)
D/KeyguardUpdateMonitor( 2432): sendKeyguardVisibilityChanged(true)
I/KeyguardUpdateMonitor( 2432): visibility is same
The Samsung Galaxy S3 Logcat:
First open my App on Smartphone after on Tablet (Died app on Smartphone)
D/STATUSBAR-NetworkController( 2606): onReceive() - RSSI_CHANGED_ACTION, WIFI_STATE, NETWORK_STATE
D/STATUSBAR-NetworkController( 2606): Nothing, mRoamingIconId = 0
D/SensorService( 2345):
0.9 0.2 9.7
D/dalvikvm(10656): GC_CONCURRENT freed 1047K, 23% free 1K, paused 14ms+13ms, total 82ms
D/dalvikvm(10656): WAIT_FOR_CONCURRENT_GC blocked 32ms
D/dalvikvm(10656): GC_CONCURRENT freed 1024K, 23% free 1K, paused 16ms+15ms, total 93ms
D/SSRMv2:Monitor( 2345): SIOP:: AP = 340 (read only)
D/STATUSBAR-NetworkController( 2606): onReceive() - RSSI_CHANGED_ACTION, WIFI_STATE, NETWORK_STATE
D/STATUSBAR-NetworkController( 2606): Nothing, mRoamingIconId = 0
V/AlarmManager( 2345): waitForAlarm result :1
V/AlarmManager( 2345): trigger ELAPSED_REALTIME_WAKEUP or RTC_WAKEUP
D/dalvikvm(10656): GC_CONCURRENT freed 1082K, 23% free 1K, paused 13ms+14ms, total 84ms
D/dalvikvm(10656): WAIT_FOR_CONCURRENT_GC blocked 5ms
D/SensorService( 2345):
0.9 0.3 9.6
D/dalvikvm(10656): GC_CONCURRENT freed 1025K, 22% free 1K, paused 15ms+14ms, total 93ms
D/dalvikvm(10656): WAIT_FOR_CONCURRENT_GC blocked 30ms
E/BufferQueue( 1931): [SurfaceView] queueBuffer: fence is NULL
E/Surface (10656): queueBuffer: error queuing buffer to SurfaceTexture, -22
E/[EGL-ERROR](10656): void __egl_platform_queue_buffer(mali_base_ctx_handle, egl_buffer*):1301: unable to queue buffer (0x684f0cd0)
E/[EGL-ERROR](10656): void __egl_platform_dequeue_buffer(egl_surface*):1610: failed to dequeue buffer from native window (0x); err = -, buf = 0x0,max_allowed_dequeued_buffers 3 __egl_platform_dequeue_buffer(egl_surface*):1610: failed to dequeue buffer from native window (0x); err = -16, buf = 0x0,max_allowed_dequeued_buffers 3
E/BufferQueue( 1931): [SurfaceView] dequeueBuffer: min undequeued buffer count (1) exceeded (dequeued=3 undequeudCount=0)
E/[EGL-ERROR](10656): void __egl_platform_dequeue_buffer(egl_surface*):1610: failed to dequeue buffer from native window (0x); err = -16, buf = 0x0,max_allowed_dequeued_buffers 3
. (x200 minimum)
E/[EGL-ERROR](10656): void __egl_platform_dequeue_buffer(egl_surface*):1610: failed to dequeue buffer from native window (0x); err = -, buf = 0x0,max_allowed_dequeued_buffers 3
D/STATUSBAR-NetworkController( 2606): onReceive() - RSSI_CHANGED_ACTION, WIFI_STATE, NETWORK_STATE
D/STATUSBAR-NetworkController( 2606): Nothing, mRoamingIconId = 0
D/dalvikvm(10656): GC_CONCURRENT freed 1154K, 22% free 1K, paused 19ms+19ms, total 127ms
E/[EGL-ERROR](10656): void __egl_platform_dequeue_buffer(egl_surface*):1610: failed to dequeue buffer from native window (0x); err = -, buf = 0x0,max_allowed_dequeued_buffers 3
E/[EGL-ERROR](10656): void __egl_platform_dequeue_buffer(egl_surface*):1610: failed to dequeue buffer from native window (0x); err = -, buf = 0x0,max_allowed_dequeued_buffers 3
D/STATUSBAR-NetworkController( 2606): onReceive() - RSSI_CHANGED_ACTION, WIFI_STATE, NETWORK_STATE
D/STATUSBAR-NetworkController( 2606): Nothing, mRoamingIconId = 0
D/dalvikvm(10656): GC_CONCURRENT freed 1172K, 23% free 1K, paused 22ms+16ms, total 102ms
D/dalvikvm(10656): WAIT_FOR_CONCURRENT_GC blocked 23ms
E/BufferQueue( 1931): [SurfaceView] queueBuffer: fence is NULL
E/Surface (10656): queueBuffer: error queuing buffer to SurfaceTexture, -22
E/[EGL-ERROR](10656): void __egl_platform_queue_buffer(mali_base_ctx_handle, egl_buffer*):1301: unable to queue buffer (0x6f2b4438)
E/SharedPreferencesImpl(10656): Couldn't create directory for SharedPreferences file /data/data/com.SteeBono.CilyCube/shared_prefs/com.SteeBono.CilyCube.xml
D/SensorService( 2345):
0.9 0.3 9.7
E/[EGL-ERROR](10656): mali_surface* __egl_platform_create_surface_from_native_buffer(android_native_buffer_t*, egl_surface*, mali_base_ctx_handle):616: invalid buffer handle given (0x0)
E/[EGL-ERROR](10656): void __egl_platform_dequeue_buffer(egl_surface*):1673: Failed to create a surface from native buffer (0x7bd130e8)
D/SensorService( 2345): SensorDevice::activating sensor handle=0 ns=
D/iNemoSensor( 2345): setDelay(): handle(0), en()
I/iNemoSensor( 2345): update_delay wanted_accel =
I/SurfaceFlinger( 1931): id=343 Removed TurfaceView (2/5)
V/LvOutput( 1934): initCheck: 0
W/InputDispatcher( 2345): channel ~ Consumer closed input channel or an error occurred.
events=0x9
E/InputDispatcher( 2345): channel ~ Channel is unrecoverably broken and will be disposed!
V/LvOutput( 1934): detachEffects: detach processing for output 2, stream 3, session 291
V/LvOutput( 1934): detachEffects: no output processing was attached to this stream
V/AudioPolicyManagerBase( 1934): stopOutput() output 2, stream 3, session 291
V/AudioPolicyManagerBase( 1934): changeRefCount() stream 3, count 0
W/AudioPolicyManagerBase( 1934): stream type [13], return media strategy
W/AudioPolicyManagerBase( 1934): stream type [14], return media strategy
W/AudioPolicyManagerBase( 1934): stream type [13], return media strategy
I/ActivityManager( 2345): Process com.SteeBono.CilyCube (pid 10656) (adj 0) has died.
W/ActivityManager( 2345): Force removing ActivityRecord{43e27870 u0 com.SteeBono.CilyCube/com.unity3d.player.UnityPlayerNativeActivity}: app died, no saved state
I/SurfaceFlinger( 1931): id=343 Removed TurfaceView (-2/5)
W/AudioPolicyManagerBase( 1934): stream type [14], return media strategy
V/AudioPolicyManagerBase( 1934): getNewDevice() selected device 0
I/SurfaceFlinger( 1931): id=342 Removed VnityPlayer (2/4)
94.3k13152243
Know someone who can answer?
Share a link to this
via , , , or .
Your Answer
Sign up or
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Post as a guest
By posting your answer, you agree to the
Browse other questions tagged
Stack Overflow works best with JavaScript enabled

我要回帖

更多关于 sglte手机有哪些 的文章

 

随机推荐