Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

starting error of selendroid standalone server on real android device #1166

Open
suchaeha opened this issue Mar 5, 2018 · 0 comments
Open

Comments

@suchaeha
Copy link

suchaeha commented Mar 5, 2018

Hello anyone,

I intend to implement web-crawling app on the real device of android phone by using selendroid.
My little experience on selendroid doesn't make sure that what I did was right or not. So I would like you to point out what my problem is.

My problem is that, when I run my app which has the function of selendroid standalone server and client on real device of android phone,
I always get the following error: 'java.lang.String java.net.URL.toString()' on a null object reference

more details are here
03-02 12:00:22.527 25727-25727/com.shs.top.myapplication I/SelendroidLauncher: Starting Selendroid standalone on port 4444
03-02 12:00:22.555 25727-25727/com.shs.top.myapplication E/SelendroidLauncher: Error building server: Attempt to invoke virtual method 'java.lang.String java.net.URL.toString()' on a null object reference

The steps which I have taken are as follows.

  1. Create a project with android studio

  2. Add two jar files in 'app/libs' folder as library

    • selendroid-client-0.17.0.jar
    • selendroid-standalone-0.17.0-with-dependecnies.jar
  3. Creat a function that calls SelendroidLauncher in MainActivity.java as follows.

    public void startSelendroidServer() throws Exception {
    if (selendroidServer != null) {
    selendroidServer.stopSelendroid();
    }

     SelendroidConfiguration config = new SelendroidConfiguration();
    
     selendroidServer = new SelendroidLauncher(config);
     selendroidServer.launchSelendroid();   //---> always throw an exception
    
     DesiredCapabilities caps = SelendroidCapabilities.android();
    
     driver = new SelendroidDriver(new URL("http://127.0.0.1:4444/wd/hub"), caps);
    

    }

    Please refer to my MainActivity.java file below

  4. Build project
    There is no error after the completion of 'rebuild project' execution.
    Please refer to my development environment below

  5. Execute 'Run app' with real android device of 'LGE-LG-F460L Android 5.0.1, API21'

    • no error after 'Gradle Build'
    • Success on Install APKs
    • 'My Application' app is successfully activated on android phone
    • but selendroid server is not started along with the following exception error:
      com.shs.top.myapplication E/SelendroidLauncher: Error building server: Attempt to invoke virtual method 'java.lang.String java.net.URL.toString()' on a null object reference

Please help me to correct my problem. Thanks in advance.

p1: Development Environment
Android Studio 3.0.1
SDK installed : Android API 27, Android 8.0 (Oreo) API 26, Android 5.0(Lolipop) API 21
LGE-LG-F460L : Android 5.0.1, Kernel 3.10.40

p2: MainActivity.java
package com.shs.top.myapplication;

    import android.os.Bundle;
    import android.support.design.widget.FloatingActionButton;
    import android.support.design.widget.Snackbar;
    import android.support.v7.app.AppCompatActivity;
    import android.support.v7.widget.Toolbar;
    import android.view.View;
    import android.view.Menu;
    import android.view.MenuItem;
    //#################################################################
    import java.net.URL;
    
    import io.selendroid.client.SelendroidDriver;
    import io.selendroid.common.SelendroidCapabilities;
    import io.selendroid.standalone.SelendroidConfiguration;
    import io.selendroid.standalone.SelendroidLauncher;
    
    import org.openqa.selenium.By;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.remote.DesiredCapabilities;
    import org.openqa.selenium.remote.RemoteWebDriver;
    //#################################################################
    
    public class MainActivity extends AppCompatActivity {
    
        private SelendroidLauncher selendroidServer = null;
        private WebDriver driver = null;
        final Context context = this;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
            setSupportActionBar(toolbar);
    
            FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
            fab.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                            .setAction("Action", null).show();
                }
            });
    
            try{
                startSelendroidServer();
                System.out.println("### Success on Selendroid Server");
            }catch(Exception e){
                System.out.println("###: Exception occurred " + e.getMessage());
            }
    
            doTest();
            //------------------------------------------------------------------------------------------
        }
    
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.menu_main, menu);
            return true;
        }
    
        @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            // Handle action bar item clicks here. The action bar will
            // automatically handle clicks on the Home/Up button, so long
            // as you specify a parent activity in AndroidManifest.xml.
            int id = item.getItemId();
    
            //noinspection SimplifiableIfStatement
            if (id == R.id.action_settings) {
                return true;
            }
    
            return super.onOptionsItemSelected(item);
        }
    
        //######################################################################
        //@Test
        public void doTest() {
            System.out.println("###: doTest >>>>>>>>>>>>>>");
            //driver.get("https://mail.google.com/");
    
            //WebElement email = driver.findElement(By.id("email")).sendKeys(myEmail);
            //WebElement password = driver.findElement(By.id("pass")).sendKeys(pass);
    
            //WebElement button = driver.findElement(By.id("signIn")).click();
    
            //driver.quit();
    
            System.out.println("###: doTest <<<<<<<<<<<<<<");
        }
        //@Before
        public void startSelendroidServer() throws Exception {
            if (selendroidServer != null) {
                selendroidServer.stopSelendroid();
            }
    
            SelendroidConfiguration config = new SelendroidConfiguration();
    
            selendroidServer = new SelendroidLauncher(config);
            selendroidServer.launchSelendroid();   //---> always throw an exception
    
            DesiredCapabilities caps = SelendroidCapabilities.android();
    
            driver = new SelendroidDriver(new URL("http://127.0.0.1:4444/wd/hub"), caps);
        }
        //@After
        public void stopSelendroidServer() {
            if (driver != null) {
                driver.quit();
            }
            if (selendroidServer != null) {
                selendroidServer.stopSelendroid();
            }
        }
    	//######################################################################
    }

p3: logcat log

03-05 11:40:25.202 20946-20946/? I/art: Late-enabling -Xcheck:jni
03-05 11:40:25.203 1295-2394/? I/ActivityManager: Start proc com.shs.top.myapplication for activity com.shs.top.myapplication/.MainActivity: pid=20946 uid=10177 gids={50177, 9997} abi=armeabi-v7a
03-05 11:40:25.222 1295-2422/? I/ActivityManager: Killing 20217:com.lge.lgaccount/u0a85 (adj 15): empty #17
03-05 11:40:25.328 2524-2524/? D/LIA_Service_NativeEventReceiver: onReceive action : android.intent.action.PACKAGE_ADDED = package:com.shs.top.myapplication
03-05 11:40:25.329 2524-2524/? I/LIA_Service_PlatformUtil: startLIAService() : Trying to start LIA service ...
03-05 11:40:25.341 1295-1319/? I/WindowStateAnimator: Starting window displayed
03-05 11:40:25.350 1295-1408/? I/SystemUI[Framework]: PhoneWindowManager.updateSystemUiVisibilityLw() :visibility=0x8600, pkg=com.shs.top.myapplication
03-05 11:40:25.353 1295-1408/? W/PhoneWindowManagerEx: Call!!!getLGSystemUiVisibility. =0x0
03-05 11:40:25.353 1295-1873/? W/libprocessgroup: failed to open /acct/uid_10085/pid_20217/cgroup.procs: No such file or directory
03-05 11:40:25.353 1295-1408/? D/StatusBarManagerServiceEx: setLGSystemUiVisibility(0x0)
03-05 11:40:25.353 1295-1408/? D/StatusBarManagerServiceEx: manageNaviBtnDisableList userId=0 what=0x0 pkg=WindowManager.LayoutParams
03-05 11:40:25.353 1295-1408/? I/SystemUI[Framework]: ==>disabledNaviBtn() what=0x0, token=android.os.Binder@dfe1f04,  pkg=WindowManager.LayoutParams
03-05 11:40:25.353 1295-1408/? I/SystemUI[Framework]: disableNaviBtn: mDisabledNaviBtn=0x0,  mDisableRecords.size=0
03-05 11:40:25.364 2524-2524/? D/LIA_Service_LIAService: onStartCommand() : LIAService started! - id :51, intent : Intent { act=com.lge.ia pkg=com.lge.ia (has extras) }
03-05 11:40:25.373 2424-2443/? D/SplitWindowPolicy: updateActivityStateChanged: resumed=true, screenId=1, isScreenFull=true
03-05 11:40:25.374 2424-2443/? D/SplitWindowPolicy: topRunningActivity=ActivityInfo{10567171 co.....myapplication.MainActivity}, taskId=705, activityType=0, bIsSplit=false
03-05 11:40:25.380 18729-18729/? D/PostponalbeReceiver: OasPackageInstalledReceiver is processing the broadcast action 'android.intent.action.PACKAGE_ADDED'.
03-05 11:40:25.396 18729-18729/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1406 android.content.ContextWrapper.sendBroadcast:376 android.content.ContextWrapper.sendBroadcast:376 com.mcafee.vsm.mss.OasPackageScanReceiver.onReceive:-1 android.app.ActivityThread.handleReceiver:2597 
03-05 11:40:25.455 1295-1759/? I/ActivityManager: Start proc com.lguplus.common for broadcast com.lguplus.common/.am.AMSmsReceiver: pid=20966 uid=10065 gids={50065, 9997, 3003, 6001} abi=armeabi-v7a
03-05 11:40:25.526 20966-20966/? D/AMSmsReceiver: onReceive() 
03-05 11:40:25.527 20966-20966/? D/AMSmsReceiver: ACTION_PACKAGE_ADDED
03-05 11:40:25.530 19281-19281/? I/LockScreenSettings: New app installed broadcast received ..
03-05 11:40:25.534 19281-19281/? I/LockScreenSettings: Number of installed packages  1
03-05 11:40:25.536 1295-2394/? I/ActivityManager: Killing 20234:com.android.keychain/1000 (adj 15): empty #17
03-05 11:40:25.643 1295-2533/? W/libprocessgroup: failed to open /acct/uid_1000/pid_20234/cgroup.procs: No such file or directory
03-05 11:40:25.779 1295-2522/? I/ActivityManager: Start proc com.lge.eula for broadcast com.lge.eula/.service.LicenseProviderUpdateObserver: pid=20983 uid=1000 gids={41000, 9997, 1028, 1015, 3003, 3002, 3001, 4002, 1007, 1023, 1004, 2002, 3008, 1026, 3005, 1009, 1027, 1003, 1014, 1010, 2001, 1000, 1002, 1021, 3004, 3009} abi=armeabi-v7a
03-05 11:40:25.889 20983-20983/? D/EulaProviderUpdateObserver: action : android.intent.action.PACKAGE_ADDED
03-05 11:40:25.889 20983-20983/? D/EulaProviderUpdateObserver: uri : package:com.shs.top.myapplication
03-05 11:40:25.891 1295-2522/? I/ActivityManager: Killing 20270:com.lguplus.common_api_impl/u0a42 (adj 15): empty #17
03-05 11:40:25.946 1295-2235/? W/libprocessgroup: failed to open /acct/uid_10042/pid_20270/cgroup.procs: No such file or directory
03-05 11:40:25.947 1881-1881/? D/[BNRAppListMgrReceiver]: android.intent.action.PACKAGE_ADDED : com.shs.top.myapplication
03-05 11:40:26.111 20290-20290/? I/PackageChangeReceiver: intent action : android.intent.action.PACKAGE_ADDED (at PackageChangeReceiver.java onReceive 20)
03-05 11:40:26.120 20311-20311/? I/NotificationManager: com.android.vending: cancel(-19455404) by com.android.vending
03-05 11:40:26.150 20311-20311/? I/Finsky: [1] com.google.android.finsky.wear.WearSupportService.onStartCommand(21): Starting WearSupportService for auto_install
03-05 11:40:26.179 20311-20311/? I/Finsky: [1] com.google.android.finsky.wear.ao.a(79): Connecting to wearable; initiated by: com.google.android.finsky.wear.WearSupportService
03-05 11:40:26.189 20311-20311/? I/Finsky: [1] com.google.android.finsky.wear.WearSupportService.onStartCommand(21): Starting WearSupportService for send_installed_apps
03-05 11:40:26.211 3520-3520/? I/WearableService: Wearable Services not starting - Wear is not available on this device.
03-05 11:40:26.214 3520-7089/? D/WearableService: onGetService - Wear is not available on this device.
03-05 11:40:26.216 20311-20311/? E/Finsky: [1] com.google.android.finsky.wear.ar.a(3): onConnectionFailed: ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}
03-05 11:40:26.217 20311-20311/? W/Finsky: [1] com.google.android.finsky.wear.ca.run(12): Dropping command=auto_install due to Gms not connected
03-05 11:40:26.217 20311-20311/? I/Finsky: [1] com.google.android.finsky.wear.WearSupportService.b(67): Stopping WearSupportService
03-05 11:40:26.219 20311-20311/? W/Finsky: [1] com.google.android.finsky.wear.ca.run(12): Dropping command=send_installed_apps due to Gms not connected
03-05 11:40:26.219 20311-20311/? I/Finsky: [1] com.google.android.finsky.wear.WearSupportService.b(67): Stopping WearSupportService
03-05 11:40:26.260 3358-21014/? D/Wear_Controller: Received broadcast action=android.intent.action.PACKAGE_ADDED and uri=com.shs.top.myapplication
03-05 11:40:26.283 3520-3799/? W/ConfigurationChimeraPro: Got null configs for com.google.android.gms.chromesync
03-05 11:40:26.327 3358-22981/? I/Icing: IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=AppsCorpus serviceId=36
03-05 11:40:26.327 3358-2932/? I/Icing: IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=AppsCorpus serviceId=32
03-05 11:40:26.336 20946-20946/com.shs.top.myapplication I/MultiDex: VM with version 2.1.0 has multidex support
03-05 11:40:26.336 20946-20946/com.shs.top.myapplication I/MultiDex: Installing application
03-05 11:40:26.336 20946-20946/com.shs.top.myapplication I/MultiDex: VM has multidex support, MultiDex support library is disabled.
03-05 11:40:26.338 3358-15571/? I/Icing: Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0, imm upload false
03-05 11:40:26.339 1295-2423/? W/ActivityManager: getRunningAppProcesses: caller 10177 does not hold REAL_GET_TASKS; limiting output
03-05 11:40:26.339 20946-20946/com.shs.top.myapplication I/InstantRun: starting instant run server: is main process
03-05 11:40:26.344 3358-15571/? I/Icing: Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0, imm upload false
03-05 11:40:26.468 20946-20946/com.shs.top.myapplication D/ContextHelper: convertTheme. context->name=com.shs.top.myapplication themeResourceId=2131623944
03-05 11:40:26.511 20946-20946/com.shs.top.myapplication W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
03-05 11:40:26.552 20946-20946/com.shs.top.myapplication I/PhoneWindow: [generateLayout] setColorNavigationBar => color=0x ff000001
03-05 11:40:26.581 20946-20946/com.shs.top.myapplication D/PhoneWindowEx: [PWEx][generateLayout] setNavigationBarColor2 : colors=0xfff5f5f5
03-05 11:40:26.582 20946-20946/com.shs.top.myapplication I/PhoneWindow: [setNavigationBarColor2] color=0x fff5f5f5
03-05 11:40:26.618 1295-1338/? D/sensors_hal_Time: time_service_sensor1_cb: msg_type 2
03-05 11:40:26.618 1295-1338/? D/sensors_hal_Time: time_service_sensor1_cb: Sn 24, msg Id 3, txn Id 0
03-05 11:40:26.618 1295-1338/? D/sensors_hal_Time: tsOffsetIs: Apps: 306925716914990; DSPS: 1467468888; Offset : 262142120481371
03-05 11:40:26.724 4657-5722/? D/LIA_MrGDBLogger_LoggerThread: [dreamwood]App Usage Logging
03-05 11:40:26.941 20946-20946/com.shs.top.myapplication I/System.out: ### Starting Selendroid Server...
03-05 11:40:26.947 20946-20946/com.shs.top.myapplication I/System.out: @@@ 1 @@@
03-05 11:40:26.952 20946-20946/com.shs.top.myapplication I/System.out: @@@ 2 @@@
03-05 11:40:26.952 20946-20946/com.shs.top.myapplication I/SelendroidLauncher: Starting Selendroid standalone on port 4444
03-05 11:40:26.988 20946-20946/com.shs.top.myapplication E/SelendroidLauncher: Error building server: Attempt to invoke virtual method 'java.lang.String java.net.URL.toString()' on a null object reference
03-05 11:40:26.990 20946-20946/com.shs.top.myapplication I/System.out: ###: Exception occurred Attempt to invoke virtual method 'java.lang.String java.net.URL.toString()' on a null object reference
03-05 11:40:26.990 20946-20946/com.shs.top.myapplication I/System.out: ##########: doTest >>>>>>>>>>>>>>
03-05 11:40:26.990 20946-20946/com.shs.top.myapplication I/System.out: ##########: doTest <<<<<<<<<<<<<<
03-05 11:40:27.004 20946-21020/com.shs.top.myapplication D/OpenGLRenderer: Render dirty regions requested: true
03-05 11:40:27.005 20946-21020/com.shs.top.myapplication I/Adreno: EGLInit: QTI Build: 03/11/15, 56bfead, 
03-05 11:40:27.013 20946-21020/com.shs.top.myapplication I/OpenGLRenderer: Initialized EGL, version 1.4
03-05 11:40:27.014 20946-21020/com.shs.top.myapplication I/Adreno: GetNativeFormatFromQctPixelFormat: Invalid qct format (611)
03-05 11:40:27.014 20946-21020/com.shs.top.myapplication I/Adreno: GetNativeFormatFromQctPixelFormat: Invalid qct format (611)
03-05 11:40:27.014 20946-21020/com.shs.top.myapplication I/Adreno: GetNativeFormatFromQctPixelFormat: Invalid qct format (611)
03-05 11:40:27.014 20946-21020/com.shs.top.myapplication I/Adreno: GetNativeFormatFromQctPixelFormat: Invalid qct format (611)
03-05 11:40:27.014 20946-21020/com.shs.top.myapplication I/Adreno: GetNativeFormatFromQctPixelFormat: Invalid qct format (612)
03-05 11:40:27.014 20946-21020/com.shs.top.myapplication I/Adreno: GetNativeFormatFromQctPixelFormat: Invalid qct format (612)
03-05 11:40:27.014 20946-21020/com.shs.top.myapplication I/Adreno: GetNativeFormatFromQctPixelFormat: Invalid qct format (612)
03-05 11:40:27.014 20946-21020/com.shs.top.myapplication I/Adreno: GetNativeFormatFromQctPixelFormat: Invalid qct format (612)
03-05 11:40:27.019 20946-21020/com.shs.top.myapplication D/OpenGLRenderer: Enabling debug mode 0
03-05 11:40:27.023 20946-20946/com.shs.top.myapplication D/Atlas: Validating map...
03-05 11:40:27.026 1295-1759/? D/SplitWindow: check instance of lgWin Window{1eb74cfe u0 com.shs.top.myapplication/com.shs.top.myapplication.MainActivity}
03-05 11:40:27.103 1295-2422/? D/InputDispatcher: Focus entered window: Window{1eb74cfe u0 com.shs.top.myapplication/com.shs.top.myapplication.MainActivity}
03-05 11:40:27.200 20946-20946/com.shs.top.myapplication W/art: Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
03-05 11:40:27.358 3358-6470/? I/Icing: Indexing 2D2C0D13EC356F4C19CB6D0AE2F332A644AD2A28 from com.google.android.gms
03-05 11:40:27.456 3358-6470/? I/Icing: Indexing done 2D2C0D13EC356F4C19CB6D0AE2F332A644AD2A28
03-05 11:40:27.481 19562-19562/? W/IInputConnectionWrapper: showStatusIcon on inactive InputConnection
03-05 11:40:27.483 1295-1410/? I/ActivityManager: Displayed com.shs.top.myapplication/.MainActivity: +2s327ms
03-05 11:40:27.483 1295-1410/? I/Timeline: Timeline: Activity_windows_visible id: ActivityRecord{2053a5c6 u0 com.shs.top.myapplication/.MainActivity t705} time:81135557
03-05 11:40:27.494 20946-20946/com.shs.top.myapplication I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@b486ac9 time:81135568
03-05 11:40:27.697 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:27.717 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:28.522 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:40:30.105 372-472/? E/ThermalEngine: gbmonitor_request: Not DCP charger, gbm mitigation request ignore!!!
03-05 11:40:31.220 3520-3520/? I/WearableService: Wearable Services stopping
03-05 11:40:32.524 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:40:32.890 1838-1838/? I/wpa_supplicant: wlan0: CTRL-EVENT-SCAN-STARTED 
03-05 11:40:34.701 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:34.726 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:35.884 1838-1838/? I/wpa_supplicant: [LGE_PATCH]scan interval[12] = 300 sec.
03-05 11:40:35.885 2424-3764/? D/WfdsMonitor: Event [CTRL-EVENT-SCAN-RESULTS ]
03-05 11:40:35.885 2424-3764/? D/WfdsMonitor: Event [WPS-AP-AVAILABLE-AUTH ]
03-05 11:40:35.889 1295-1786/? D/LGWifiP2pService: InactiveState{ when=-4ms what=147461 target=com.android.internal.util.StateMachine$SmHandler }
03-05 11:40:35.889 1295-1786/? D/LGWifiP2pService: P2pEnabledState{ when=-4ms what=147461 target=com.android.internal.util.StateMachine$SmHandler }
03-05 11:40:35.889 1295-1786/? D/LGWifiP2pService: DefaultState{ when=-4ms what=147461 target=com.android.internal.util.StateMachine$SmHandler }
03-05 11:40:35.998 3520-20534/? D/libc-netbsd: [getaddrinfo]: hostname=playatoms-pa.googleapis.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-05 11:40:35.998 3520-20534/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-05 11:40:35.998 3520-20534/? D/libc-netbsd: [getaddrinfo]: hostname=playatoms-pa.googleapis.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-05 11:40:35.999 3520-20534/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=1024; ai_family=0
03-05 11:40:36.000 355-21026/? D/libc-netbsd: [getaddrinfo]: hostname=playatoms-pa.googleapis.com; servname=(null); cache_mode=local, netid=0; mark=917504
03-05 11:40:36.000 355-21026/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=1024; ai_family=0
03-05 11:40:36.000 355-21026/? D/libc-netbsd: default dns: query_ipv6=0, query_ipv4=0
03-05 11:40:36.000 355-21026/? D/libc: query_ipv4 and query_ipv6 is set to force
03-05 11:40:36.001 355-21026/? D/libc-netbsd: res_queryN name = playatoms-pa.googleapis.com, class = 1, type = 28
03-05 11:40:36.002 355-21026/? D/libc-netbsd: res_queryN name = playatoms-pa.googleapis.com, class = 1, type = 1
03-05 11:40:36.003 355-21026/? D/libc-netbsd: res_queryN name = playatoms-pa.googleapis.com., class = 1, type = 28
03-05 11:40:36.008 355-21026/? D/libc-netbsd: res_queryN name = playatoms-pa.googleapis.com., class = 1, type = 1
03-05 11:40:36.009 3520-20534/? I/System.out: [CDS][DNS]Unable to resolve host "playatoms-pa.googleapis.com": No address associated with hostname
03-05 11:40:36.010 3520-20534/? W/io.grpc.internal.dj: [{0}] Failed to resolve name. status={1}
03-05 11:40:36.011 1295-1407/? D/DSQN: DNSproblemNotiEnabled is disabled ignore DNS fail CB
03-05 11:40:36.526 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:40:40.110 372-472/? E/ThermalEngine: gbmonitor_request: Not DCP charger, gbm mitigation request ignore!!!
03-05 11:40:40.528 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:40:41.703 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:41.718 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:44.530 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:40:46.619 1295-1338/? D/sensors_hal_Time: time_service_sensor1_cb: msg_type 2
03-05 11:40:46.619 1295-1338/? D/sensors_hal_Time: time_service_sensor1_cb: Sn 24, msg Id 3, txn Id 0
03-05 11:40:46.619 1295-1338/? D/sensors_hal_Time: tsOffsetIs: Apps: 306945717731180; DSPS: 1468124275; Offset : 262142120474915
03-05 11:40:48.531 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:40:48.707 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:48.724 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:50.115 372-472/? E/ThermalEngine: gbmonitor_request: Not DCP charger, gbm mitigation request ignore!!!
03-05 11:40:52.533 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:40:55.710 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:55.728 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:40:55.991 521-521/? I/kds: type=1400 audit(0.0:2806): avc: denied { setattr } for name="5" dev="mmcblk0p45" ino=1485413 scontext=u:r:init:s0 tcontext=u:object_r:system_file:s0 tclass=file permissive=1
03-05 11:40:56.534 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:40:57.059 1295-1409/? D/Tethering: TetherModeAliveState.processMessage what=4
03-05 11:40:57.064 1295-1409/? D/ConnectivityManager: Looking for legacyRequest for netCap with hash: [ Transports: CELLULAR Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN&TETHERING] (1105925)
03-05 11:40:57.064 1295-1409/? D/ConnectivityManager: sLegacyRequests has:
03-05 11:40:57.064 1295-1409/? D/ConnectivityManager:   [ Transports: CELLULAR Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN&TETHERING] (1105925)
03-05 11:40:57.064 1295-1409/? D/ConnectivityManager: [lg_data] startUsingNetworkFeature (((minfo.getType() :::false
03-05 11:40:57.065 1295-1409/? D/ConnectivityManager: renewing startUsingNetworkFeature request NetworkRequest [ id=63, legacyType=21, [ Transports: CELLULAR Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN&TETHERING] ]
03-05 11:40:57.065 1295-1409/? D/ConnectivityManager: renewing request to seqNum 36
03-05 11:41:00.017 3249-3249/? D/[Concierge]Service: onStartCommand(). Type : 9
03-05 11:41:00.068 5141-5141/? I/[SystemUI]TimeTickManager: setTimeTickHandler, called onTimeChanged()
03-05 11:41:00.068 5141-5141/? I/KeyguardUpdateMonitor: called onTimeUpdated()
03-05 11:41:00.068 5141-5141/? I/[SystemUI]KeyguardIndicationController: called onTimeUpdated()
03-05 11:41:00.068 5141-5141/? I/[SystemUI]Clock: called onTimeUpdated()
03-05 11:41:00.075 5141-5141/? I/LgeClockWidgetControlView: called onTimeUpdated()
03-05 11:41:00.075 5141-5141/? I/[SystemUI]DateView: called onTimeUpdated()
03-05 11:41:00.076 5141-5141/? I/[SystemUI]DateView: called onTimeUpdated()
03-05 11:41:00.076 5141-5141/? D/KeyguardUpdateMonitor: handleTimeUpdate
03-05 11:41:00.120 372-472/? E/ThermalEngine: gbmonitor_request: Not DCP charger, gbm mitigation request ignore!!!
03-05 11:41:00.536 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:02.712 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:02.728 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:04.537 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:06.620 1295-1338/? D/sensors_hal_Time: time_service_sensor1_cb: msg_type 2
03-05 11:41:06.620 1295-1338/? D/sensors_hal_Time: time_service_sensor1_cb: Sn 24, msg Id 3, txn Id 0
03-05 11:41:06.620 1295-1338/? D/sensors_hal_Time: tsOffsetIs: Apps: 306965718533204; DSPS: 1468779661; Offset : 262142120483508
03-05 11:41:08.539 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:09.715 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:09.733 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:10.125 372-472/? E/ThermalEngine: gbmonitor_request: Not DCP charger, gbm mitigation request ignore!!!
03-05 11:41:12.540 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:16.541 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:16.717 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:16.730 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:20.130 372-472/? E/ThermalEngine: gbmonitor_request: Not DCP charger, gbm mitigation request ignore!!!
03-05 11:41:20.543 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:23.719 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:23.733 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:24.544 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:26.621 1295-1338/? D/sensors_hal_Time: time_service_sensor1_cb: msg_type 2
03-05 11:41:26.621 1295-1338/? D/sensors_hal_Time: time_service_sensor1_cb: Sn 24, msg Id 3, txn Id 0
03-05 11:41:26.621 1295-1338/? D/sensors_hal_Time: tsOffsetIs: Apps: 306985719308300; DSPS: 1469435047; Offset : 262142120465407
03-05 11:41:28.546 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:30.067 20946-20946/com.shs.top.myapplication I/ViewRootImpl: ViewRoot's Touch Event : ACTION_HOVER_ENTER
03-05 11:41:30.078 20946-20946/com.shs.top.myapplication I/ViewRootImpl: ViewRoot's Touch Event : ACTION_HOVER_MOVE
03-05 11:41:30.096 20946-20946/com.shs.top.myapplication I/ViewRootImpl: ViewRoot's Touch Event : ACTION_HOVER_MOVE
03-05 11:41:30.135 372-472/? E/ThermalEngine: gbmonitor_request: Not DCP charger, gbm mitigation request ignore!!!
03-05 11:41:30.155 20946-20946/com.shs.top.myapplication I/ViewRootImpl: ViewRoot's Touch Event : ACTION_HOVER_MOVE
03-05 11:41:30.721 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:30.739 4061-4061/? W/Settings: Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value.
03-05 11:41:32.547 372-493/? I/ThermalEngine: [GPU_MON] 0 percent. Current Sampling Time is 1 sec
03-05 11:41:35.797 17344-17344/? I/dnsmasq: DHCPINFORM(rndis0) 192.168.42.105 02:1a:3b:1d:34:36 
03-05 11:41:35.797 17344-17344/? I/dnsmasq: DHCPACK(rndis0) 192.168.42.105 02:1a:3b:1d:34:36 HSS-PC
03-05 11:41:36.010 3520-20534/? D/libc-netbsd: [getaddrinfo]: hostname=playatoms-pa.googleapis.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-05 11:41:36.010 3520-20534/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=4; ai_family=0
03-05 11:41:36.011 3520-20534/? D/libc-netbsd: [getaddrinfo]: hostname=playatoms-pa.googleapis.com; servname=(null); cache_mode=(null), netid=0; mark=0
03-05 11:41:36.011 3520-20534/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=1024; ai_family=0
03-05 11:41:36.011 355-21042/? D/libc-netbsd: [getaddrinfo]: hostname=playatoms-pa.googleapis.com; servname=(null); cache_mode=local, netid=0; mark=917504
03-05 11:41:36.012 355-21042/? D/libc-netbsd: [getaddrinfo]: ai_addrlen=0; ai_canonname=(null); ai_flags=1024; ai_family=0
03-05 11:41:36.012 355-21042/? D/libc-netbsd: default dns: query_ipv6=0, query_ipv4=0
03-05 11:41:36.012 355-21042/? D/libc: query_ipv4 and query_ipv6 is set to force
03-05 11:41:36.013 355-21042/? D/libc-netbsd: res_queryN name = playatoms-pa.googleapis.com, class = 1, type = 28
03-05 11:41:36.014 355-21042/? D/libc-netbsd: res_queryN name = playatoms-pa.googleapis.com, class = 1, type = 1
03-05 11:41:36.015 355-21042/? D/libc-netbsd: res_queryN name = playatoms-pa.googleapis.com., class = 1, type = 28
03-05 11:41:36.017 355-21042/? D/libc-netbsd: res_queryN name = playatoms-pa.googleapis.com., class = 1, type = 1
03-05 11:41:36.019 3520-20534/? I/System.out: [CDS][DNS]Unable to resolve host "playatoms-pa.googleapis.com": No address associated with hostname
03-05 11:41:36.019 3520-20534/? W/io.grpc.internal.dj: [{0}] Failed to resolve name. status={1}
03-05 11:41:36.020 1295-1407/? D/DSQN: DNSproblemNotiEnabled is disabled ignore DNS fail CB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant