Titanium JIRA Archive
Appcelerator Community (AC)

[AC-2228] [WARN][ThrottleService( 79)] unable to find stats for iface rmnet0

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionNeeds more info
Resolution Date2013-10-11T05:43:00.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
Labelsn/a
ReporterRon Arnold
AssigneeShak Hossain
Created2013-09-18T18:16:23.000+0000
Updated2016-03-08T07:41:13.000+0000

Description

Steps to Reproduce

compile app

Actual Result

app compiles

Expected Result

same. What I want to know is what the Warning means.

Attachments

FileDateSize
.log2013-09-18T18:16:25.000+0000195980
diagnostic2554992632872655160.log2013-09-18T18:16:29.000+000012230

Comments

  1. Ingo Muschenetz 2013-09-18

    Possibly related: http://stackoverflow.com/questions/13524514/throttleservice79-unable-reading-network-stats
  2. Mostafizur Rahman 2013-10-11

    Hello, We have not heard back from you since our last update. Please let me know if the issue has been resolved and if this ticket can be closed. However, you can reopen the ticket when you need. Thanks
  3. Mostafizur Rahman 2013-12-14

    Hello, I tested this issue with the code test code bellow. I can’t reproduce this issue in Ti SDK 3.2.0.v20131209192649. Please install the latest SDK and test your app. If you continue to get error, please send us a test code with steps to reproduce.

    Testing Environment:

    OSX Version 10.8.5 and 10.9 Titanium Studio, build: 3.1.3.201309132423 Ti CLI 3.1.2, 3.2.0-cr3 Titanium SDK: 3.1.3.GA, 3.2.0.v20131209192649 Android Device/Emulator Android SDK 2.3.3

    Test Code

       Ti.UI.backgroundColor = 'white';
       
       var win = Ti.UI.createWindow();
       
       // Create a WebView
       var aWebView = Ti.UI.createWebView({
       	url : 'http://developer.appcelerator.com'
       });
       aWebView.addEventListener('load', function(e) {
       	Ti.API.info('webview loaded: ' + e.url);
       });
       
       win.add(aWebView);
       win.open();
       
       
    Manifest file
       <?xml version="1.0" ?><manifest android:versionCode="1" android:versionName="1" package="com.mrtechnologybd.qna" xmlns:android="http://schemas.android.com/apk/res/android">
       	<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="16"/>
       
       	<!-- TI_MANIFEST -->
       
       	<application android:debuggable="false" android:icon="@drawable/appicon" android:label="QnA" android:name="QnaApplication">
       
       		<!-- TI_APPLICATION -->
       
       		<activity android:configChanges="keyboardHidden|orientation|screenSize" android:label="QnA" android:name=".QnaActivity" android:theme="@style/Theme.Titanium">
       			<intent-filter>
       				<action android:name="android.intent.action.MAIN"/>
       				<category android:name="android.intent.category.LAUNCHER"/>
       			</intent-filter>
       		</activity>
       
       		
       
       		<activity android:configChanges="keyboardHidden|orientation|screenSize" android:name="org.appcelerator.titanium.TiActivity"/>
       		<activity android:configChanges="keyboardHidden|orientation|screenSize" android:name="org.appcelerator.titanium.TiTranslucentActivity" android:theme="@android:style/Theme.Translucent"/>
       		<activity android:name="ti.modules.titanium.ui.android.TiPreferencesActivity"/>
       
       		<service android:exported="false" android:name="org.appcelerator.titanium.analytics.TiAnalyticsService"/>
       		
       
       	</application>
       
       	<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
       	<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
       	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
       	<uses-permission android:name="android.permission.INTERNET"/>
       	
       
       </manifest>
       
    If we don't hear back from you, we will assume this issue is no longer valid and the ticket can be closed. Thanks

JSON Source