wix / react-native-navigation

A complete native navigation solution for React Native
https://wix.github.io/react-native-navigation/
MIT License
13.04k stars 2.67k forks source link

Navigation.setRoot crashes application on android. #4233

Closed acollazomayer closed 6 years ago

acollazomayer commented 6 years ago

Issue Description

Im trying to build an app with authentification. I have two apps. The one with the login screen and the main application. When I loggin the redux store changes and the Loggin screen starts the LoggedInApllication. This calls a function that calls Navigation.setRoot and when this is called the app crashes with no apparent error.

Steps to Reproduce / Code Snippets / Screenshots

Here is tha App.js in which I make the two apps.

import { Navigation } from 'react-native-navigation';
import { Provider } from 'react-redux';
import { Screens, registerScreens } from './screens';
import { store, persist } from './reducers';

class App {
  constructor(rootStore, provider) {
    this.store = rootStore;
    this.provider = provider;
  }

  startLoggedInApp = () => {
    Navigation.setDefaultOptions({
      topBar: {
        visible: false,
        drawBehind: true,
        animate: false,
      }
    });
    Navigation.setRoot({
      root: {
        stack: {
          id: 'LoggedInApp',
          children: [{
            component: {
              name: Screens.Home,
            }
          }]
        }
      }
    });
  }

  startLoggedOutApp = () => {
    Navigation.setRoot({
      root: {
        stack: {
          id: 'LoggedOutApp',
          children: [{
            component: {
              name: Screens.Login,
            }
          }]
        }
      }
    });
  }

  startApp = () => {
    registerScreens(this.store, this.provider);
    Navigation.events().registerAppLaunchedListener(() => {
      persist(() => {
        this.startLoggedOutApp()
      });
    });

  }
}

export default new App(store, Provider);

Here is the loggin screen:

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { StyleSheet, View, Text } from 'react-native';
import Dimensions from 'Dimensions';

import App from '../App';
import FormInput from '../components/FormInput';
import Button from '../components/Button';
import Spinner from '../components/Spinner';

import keyCodes from '../utils/keyCodes';
import strings from '../localization';

import Colors from '../styles/colors';
import TextStyles from '../styles/texts';

export default class LoginScreen extends PureComponent {
  static getDerivedStateFromProps(nextProps) {
    if (nextProps.user !== null) {
      App.startLoggedInApp();
    }
    return null;
  }

  constructor() {
    super();

    this.state = {
      column: -1,
      email: '',
      password: '',
    }

    this.handleEmailChange = this.handleEmailChange.bind(this);
    this.handlePasswordChange = this.handlePasswordChange.bind(this);
    this.handleInputBlur = this.handleInputBlur.bind(this);
  }

  handleEmailChange(email) {
    this.setState({ email });
  }

  handlePasswordChange(password) {
    this.setState({ password });
  }

  handleInputBlur() {
    this.setState({ column: this.state.column });
  }

  render() {
    const { email, password, column } = this.state;
    const { isFetching, error } = this.props;

    return (
      <View style={styles.container}>
        <View style={styles.formContainer}>
          <FormInput
            focused={column === 0}
            onChange={this.handleEmailChange}
            onEndEditing={this.handleInputBlur}
            value={email}
            keyboardType="email"
            textContentType="emailAddress"
            icon="email"
            keyboardType="email-address"
          />
          <FormInput
            focused={column === 1}
            onChange={this.handlePasswordChange}
            onEndEditing={this.handleInputBlur}
            value={password}
            textContentType="password"
            secureTextEntry
            icon="lock"
          />
          { error && <Text numberOfLines={1} style={[TextStyles.title.md, styles.error]}>{error}</Text>}
          <Button
            title={strings.login.toUpperCase()}
            style={styles.button}
            focused={column === 2}
            width={Dimensions.get('window').width * 0.45}
            height={50}
          />
          { isFetching && <Spinner overlay /> }
        </View>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
    backgroundColor: Colors.primary,
  },
  formContainer: {
    width: Dimensions.get('window').width * 0.45,
  },
  button: {
    marginTop: 20,
    padding: 10,
    borderColor: Colors.fontPrimary,
    borderWidth: 2,
    borderRadius: 2,
  },
  error: {
    marginTop: 20,
    textAlign: 'center',
  },
});

LoginScreen.propTypes = {
  login: PropTypes.func.isRequired,
  isFetching: PropTypes.bool.isRequired,
  error: PropTypes.string,
}

LoginScreen.defaultsProps = {
  error: null,
}

And here is the registrations of the screens

import { Navigation } from 'react-native-navigation';
import HomeScreen from './Home';
import SearchScreen from './Search';
import SettingsScreen from './Settings';
import VideoScreen from './Video';
import LoginScreen from '../containers/LoginContainer';

export const Screens = {
  Home: 'Home',
  Login: 'Login',
  Video: 'Video',
  Search: 'Search',
  Settings: 'Settings',
};

export const registerScreens = (store, provider) => {
  Navigation.registerComponentWithRedux(Screens.Home, () => HomeScreen, provider, store);
  Navigation.registerComponentWithRedux(Screens.Login, () => LoginScreen, provider, store);
  Navigation.registerComponentWithRedux(Screens.Video, () => VideoScreen, provider, store);
  Navigation.registerComponentWithRedux(Screens.Search, () => SearchScreen, provider, store);
  Navigation.registerComponentWithRedux(Screens.Settings, () => SettingsScreen, provider, store);
};

Environment

acollazomayer commented 6 years ago
10-26 11:54:59.052  1942  1942 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
10-26 11:54:59.058  1942  1942 D AndroidRuntime: CheckJNI is OFF
10-26 11:54:59.241  1942  1942 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
10-26 11:54:59.298  1942  1942 I Radio-JNI: register_android_hardware_Radio DONE
10-26 11:54:59.324  1942  1942 D AndroidRuntime: Calling main entry com.android.commands.am.Am
10-26 11:54:59.335  1942  1942 D AndroidRuntime: Shutting down VM
10-26 11:55:00.013  4416  4416 D AlarmManager: targetPackage = android
10-26 11:55:06.661  1957  1957 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
10-26 11:55:06.668  1957  1957 D AndroidRuntime: CheckJNI is OFF
10-26 11:55:06.860  1957  1957 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
10-26 11:55:06.979  1957  1957 I Radio-JNI: register_android_hardware_Radio DONE
10-26 11:55:07.005  1957  1957 D AndroidRuntime: Calling main entry com.android.commands.pm.Pm
10-26 11:55:07.025  4126  4126 I         : free_cache(11426432) avail 10636070912
10-26 11:55:07.757  4416  4457 I PackageManager.DexOptimizer: Running dexopt (dex2oat) on: /data/app/vmdl218531016.tmp/base.apk pkg=com.boldtv isa=arm vmSafeMode=false debuggable=true target-filter=interpret-only oatDir = /data/app/vmdl218531016.tmp/oat sharedLibraries=null
10-26 11:55:07.805  1968  1968 I dex2oat : /system/bin/dex2oat --compiler-filter=interpret-only --debuggable
10-26 11:55:10.560  1968  1973 W dex2oat : Before Android 4.1, method int android.support.v7.widget.DropDownListView.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
10-26 11:55:10.676  1968  1968 W dex2oat : Before Android 4.1, method int android.support.v7.widget.MenuPopupWindow$MenuDropDownListView.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
10-26 11:55:10.715  1968  1972 W dex2oat : 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
10-26 11:55:12.216  1968  1968 I dex2oat : dex2oat took 4.412s (threads: 4) arena alloc=6KB (6800B) java alloc=5MB (5584200B) native alloc=11MB (12068152B) free=3MB (3922632B)
10-26 11:55:12.240  4416  4445 I ActivityManager: Force stopping com.boldtv appid=10066 user=-1: installPackageLI
10-26 11:55:12.342  4416  4457 I PackageManager: Package com.boldtv codePath changed from /data/app/com.boldtv-1 to /data/app/com.boldtv-2; Retaining data and using new
10-26 11:55:12.343  4416  4457 W PackageManager: Code path for com.boldtv changing from /data/app/com.boldtv-1 to /data/app/com.boldtv-2
10-26 11:55:12.343  4416  4457 W PackageManager: Resource path for com.boldtv changing from /data/app/com.boldtv-1 to /data/app/com.boldtv-2
10-26 11:55:12.535  4416  4457 I art     : Starting a blocking GC Explicit
10-26 11:55:12.647  4416  4457 I art     : Explicit concurrent mark sweep GC freed 71267(4MB) AllocSpace objects, 9(180KB) LOS objects, 33% free, 9MB/14MB, paused 1.917ms total 111.566ms
10-26 11:55:12.667  4126  4126 E         : Couldn't opendir /data/app/vmdl218531016.tmp: No such file or directory
10-26 11:55:12.668  4416  4457 I ActivityManager: Force stopping com.boldtv appid=10066 user=0: pkg removed
10-26 11:55:12.689  4416  4472 I InputReader: Reconfiguring input devices.  changes=0x00000010
10-26 11:55:12.692  4416  4472 I InputReader: Reconfiguring input devices.  changes=0x00000010
10-26 11:55:12.693  4416  4472 I InputReader: Reconfiguring input devices.  changes=0x00000010
10-26 11:55:12.718  4695  4695 E !!!!    : android.intent.action.PACKAGE_REMOVED
10-26 11:55:12.738 27821 27821 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1357 android.content.ContextWrapper.startService:613 android.content.ContextWrapper.startService:613 com.android.keychain.KeyChainBroadcastReceiver.onReceive:12 android.app.ActivityThread.handleReceiver:3041
10-26 11:55:12.801 15862 15862 I Finsky  : [1] com.google.android.finsky.p2p.c.a(5): Frosting ID looked up on UI thread. Caller should move to a background thread.
10-26 11:55:12.808  5191  5204 I art     : Background partial concurrent mark sweep GC freed 41342(2MB) AllocSpace objects, 14(280KB) LOS objects, 39% free, 7MB/12MB, paused 1.482ms total 133.708ms
10-26 11:55:12.826  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:12.877 15862 15971 I Finsky  : [308] com.google.android.finsky.splitinstallservice.ak.run(7): No active session in storage.
10-26 11:55:12.881  4942  8424 E NetworkScheduler: Unrecognised action provided: android.intent.action.PACKAGE_REMOVED
10-26 11:55:12.980  4416  4444 W Searchables: No global search activity found
10-26 11:55:12.988  4416  4444 W Searchables: No global search activity found
10-26 11:55:13.025 15862 15862 I Finsky  : [1] com.google.android.finsky.p2p.c.a(5): Frosting ID looked up on UI thread. Caller should move to a background thread.
10-26 11:55:13.072  1957  1957 I art     : System.exit called, status: 0
10-26 11:55:13.073  1957  1957 I AndroidRuntime: VM exiting with result code 0.
10-26 11:55:13.135 27837 27852 W Launcher.Model: Nobody to tell about the new app.  Launcher is probably loading.
10-26 11:55:13.306  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:13.395  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:13.395  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:13.395  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:13.395  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displayHome(MainActivity.java:1116)
10-26 11:55:13.395  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1400(MainActivity.java:114)
10-26 11:55:13.395  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:258)
10-26 11:55:13.395  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:13.395  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:13.395  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:13.395  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:13.395  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:13.395  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:13.395  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:13.395  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:13.410  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:13.413  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:13.414  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:13.414  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:13.414  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:13.414  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:13.414  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:13.414  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:13.414  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:13.414  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:13.414  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:13.414  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:13.414  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:13.414  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:13.414  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:13.417  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:13.417  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:13.417  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:13.417  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:13.417  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:13.417  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:13.417  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:13.417  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:13.417  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:13.417  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:13.418  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:13.418  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:13.418  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:13.418  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:13.419  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:13.420  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:13.420  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:13.420  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:13.420  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:13.420  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:13.420  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:13.420  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:13.420  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:13.420  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:13.420  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:13.420  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:13.420  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:13.420  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:13.422  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:13.422  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:13.422  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:13.422  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:13.422  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:13.422  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:13.422  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:13.422  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:13.422  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:13.422  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:13.422  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:13.422  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:13.422  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:13.422  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:13.424  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:13.425  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:13.425  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:13.425  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:13.425  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:13.425  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:13.425  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:13.425  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:13.425  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:13.425  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:13.425  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:13.425  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:13.425  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:13.425  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:13.425  4695  4695 E remove  : com.boldtv
10-26 11:55:13.425  4695  4695 E remove  : com.boldtv
10-26 11:55:13.426  4695  4695 E remove  : com.boldtv
10-26 11:55:13.426  4695  4695 E remove  : com.boldtv
10-26 11:55:13.426  4695  4695 E remove  : com.boldtv
10-26 11:55:13.426  4695  4695 E remove  : com.boldtv
10-26 11:55:13.426  4695  4695 E remove  : com.boldtv
10-26 11:55:13.508  4695  4695 E !!!!!!! : 29
10-26 11:55:13.530  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:13.795  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:13.823 15862 15862 I Finsky  : [1] com.google.android.finsky.wear.WearSupportService.onStartCommand(21): Starting WearSupportService for auto_install
10-26 11:55:13.826 15862 15862 I Finsky  : [1] com.google.android.finsky.wear.ar.a(80): Connecting to wearable; initiated by: com.google.android.finsky.wear.WearSupportService
10-26 11:55:13.830 15862 15862 I Finsky  : [1] com.google.android.finsky.p2p.d.a(3): Wrote row to frosting DB: 201
10-26 11:55:13.863  5191  1986 I ChromeSync: [Sync,SyncIntentOperation] Handling the intent: Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.boldtv flg=0x4000010 cmp=com.google.android.gms/.chimera.GmsIntentOperationService (has extras) }.
10-26 11:55:13.945 15862 15862 I Finsky  : [1] com.google.android.finsky.scheduler.JobSchedulerEngine.a(126): Cancelling existing job with id: 9001
10-26 11:55:13.948  4416 10550 D AlarmManager: targetPackage = null
10-26 11:55:13.948  4416 10550 D AlarmManager: targetPackage = null
10-26 11:55:13.954 15862 15862 I Finsky  : [1] com.google.android.finsky.scheduler.JobSchedulerEngine.a(61): Scheduling job with id: 9000
10-26 11:55:13.959  4416  6533 D AlarmManager: targetPackage = null
10-26 11:55:13.973  4942  4942 I WearableService: Wearable Services not starting - Wear is not available on this device.
10-26 11:55:13.999  4942  5245 W WearableService: onGetService - Wear is not available on this device.
10-26 11:55:14.005  4942  8424 E NetworkScheduler: Unrecognised action provided: android.intent.action.PACKAGE_REPLACED
10-26 11:55:14.015 15862 15862 E Finsky  : [1] com.google.android.finsky.wear.au.a(3): onConnectionFailed: ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}
10-26 11:55:14.016 15862 15862 W Finsky  : [1] com.google.android.finsky.wear.cd.run(12): Dropping command=auto_install due to Gms not connected
10-26 11:55:14.019 15862 15862 I Finsky  : [1] com.google.android.finsky.wear.WearSupportService.b(67): Stopping WearSupportService
10-26 11:55:14.118  4416  5299 D AlarmManager: targetPackage = com.google.android.gms
10-26 11:55:14.160  5191  6367 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=AppsCorpus serviceId=32
10-26 11:55:14.163  5191  6369 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=AppsCorpus serviceId=36
10-26 11:55:14.241  5191  6938 I Icing   : Usage reports ok 1, Failed Usage reports 0, indexed 0, rejected 0, imm upload false
10-26 11:55:14.273  5191  6938 I Icing   : Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0, imm upload false
10-26 11:55:14.284  4695  4695 E !!!!!   : focusId2
10-26 11:55:14.286  4695  4695 E !!!!    : android.intent.action.PACKAGE_ADDED
10-26 11:55:14.327  5191  6367 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=AppsCorpus serviceId=32
10-26 11:55:14.333  5191  6369 I Icing   : IndexChimeraService.getServiceInterface callingPackage=com.google.android.gms componentName=AppsCorpus serviceId=36
10-26 11:55:14.381  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:14.384  5191  6938 I Icing   : Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0, imm upload false
10-26 11:55:14.427  5191  6938 I Icing   : Usage reports ok 0, Failed Usage reports 0, indexed 0, rejected 0, imm upload false
10-26 11:55:14.585  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:14.670  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:14.670  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:14.670  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:14.670  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displayHome(MainActivity.java:1116)
10-26 11:55:14.670  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1400(MainActivity.java:114)
10-26 11:55:14.670  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:258)
10-26 11:55:14.670  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:14.670  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:14.671  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:14.671  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:14.671  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:14.671  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:14.671  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:14.671  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:14.683  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:14.683  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:14.683  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:14.683  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:14.683  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:14.683  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:14.683  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:14.684  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:14.684  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:14.684  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:14.684  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:14.684  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:14.684  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:14.684  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:14.686  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:14.686  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:14.686  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:14.686  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:14.686  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:14.686  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:14.686  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:14.686  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:14.686  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:14.687  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:14.687  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:14.687  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:14.687  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:14.687  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:14.689  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:14.690  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:14.690  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:14.690  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:14.690  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:14.690  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:14.690  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:14.690  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:14.690  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:14.690  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:14.690  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:14.691  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:14.691  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:14.691  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:14.694  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:14.695  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:14.695  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:14.695  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:14.695  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:14.695  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:14.695  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:14.695  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:14.695  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:14.695  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:14.695  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:14.695  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:14.695  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:14.695  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:14.699  4695  4695 W System.err: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
10-26 11:55:14.699  4695  4695 W System.err:    at java.util.ArrayList.get(ArrayList.java:411)
10-26 11:55:14.699  4695  4695 W System.err:    at com.oranth.tvlauncher.util.ViewHelper.getLabelByPackageName(ViewHelper.java:107)
10-26 11:55:14.699  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.displaySetting(MainActivity.java:1079)
10-26 11:55:14.699  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity.access$1500(MainActivity.java:114)
10-26 11:55:14.699  4695  4695 W System.err:    at com.oranth.tvlauncher.MainActivity$3.onReceive(MainActivity.java:259)
10-26 11:55:14.699  4695  4695 W System.err:    at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1122)
10-26 11:55:14.699  4695  4695 W System.err:    at android.os.Handler.handleCallback(Handler.java:751)
10-26 11:55:14.699  4695  4695 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:95)
10-26 11:55:14.700  4695  4695 W System.err:    at android.os.Looper.loop(Looper.java:154)
10-26 11:55:14.700  4695  4695 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6125)
10-26 11:55:14.700  4695  4695 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
10-26 11:55:14.700  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:892)
10-26 11:55:14.700  4695  4695 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:782)
10-26 11:55:14.700  4695  4695 E remove  : com.boldtv
10-26 11:55:14.700  4695  4695 E remove  : com.boldtv
10-26 11:55:14.700  4695  4695 E remove  : com.boldtv
10-26 11:55:14.700  4695  4695 E remove  : com.boldtv
10-26 11:55:14.700  4695  4695 E remove  : com.boldtv
10-26 11:55:14.700  4695  4695 E remove  : com.boldtv
10-26 11:55:14.700  4695  4695 E remove  : com.boldtv
10-26 11:55:14.713  5191  5196 I art     : Do full code cache collection, code=428KB, data=477KB
10-26 11:55:14.715  5191  5196 I art     : Starting a blocking GC JitCodeCache
10-26 11:55:14.716  5191  5196 I art     : After code cache collection, code=395KB, data=406KB
10-26 11:55:14.771  4695  4695 E !!!!!!! : 29
10-26 11:55:14.789  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:15.176  2000  2000 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<<
10-26 11:55:15.185  4695  4695 D         : fShaderProc32:0xe747c4e9, fSampleProc32:0xe761dce7, fMatrixProc:0xe7620b75, matrix_type:-1
10-26 11:55:15.186  2000  2000 D AndroidRuntime: CheckJNI is OFF
10-26 11:55:15.282  5191  6402 I Icing   : Indexing 9C0CD8270066F09530ACF5DD62152ACC280F1FA5 from com.google.android.gms
10-26 11:55:15.348  5191  6402 I Icing   : Indexing done 9C0CD8270066F09530ACF5DD62152ACC280F1FA5
10-26 11:55:15.383  2000  2000 D ICU     : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat
10-26 11:55:15.438  5191  6402 I Icing   : Indexing 9C0CD8270066F09530ACF5DD62152ACC280F1FA5 from com.google.android.gms
10-26 11:55:15.443  5191  6402 I Icing   : Indexing done 9C0CD8270066F09530ACF5DD62152ACC280F1FA5
10-26 11:55:15.444  2000  2000 I Radio-JNI: register_android_hardware_Radio DONE
10-26 11:55:15.475  2000  2000 D AndroidRuntime: Calling main entry com.android.commands.am.Am
10-26 11:55:15.483  4416  5516 I ActivityManager: START u0 {flg=0x10000000 cmp=com.boldtv/.MainActivity} from uid 0 on display 0
10-26 11:55:15.500  2000  2000 D AndroidRuntime: Shutting down VM
10-26 11:55:15.519  4416  4443 I ActivityManager: Start proc 2016:com.boldtv/u0a66 for activity com.boldtv/.MainActivity
10-26 11:55:15.521  2016  2016 I art     : Late-enabling -Xcheck:jni
10-26 11:55:15.596  4105  4870 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:15.596  4105  4870 E ion     : ioctl c0144900 failed with code -1: Invalid argument
10-26 11:55:15.596  4105  4870 D gralloc : (-22) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:15.646  4534  4534 W asset   : Asset path /data/app/com.boldtv-1/base.apk is neither a directory nor file (type=1).
10-26 11:55:15.647  4534  4534 E ResourcesManager: failed to add asset path /data/app/com.boldtv-1/base.apk
10-26 11:55:15.651  4534  4534 W PackageManager: Failure retrieving resources for com.boldtv
10-26 11:55:15.652  4534  4534 W asset   : Asset path /data/app/com.boldtv-1/base.apk is neither a directory nor file (type=1).
10-26 11:55:15.652  4534  4534 E ResourcesManager: failed to add asset path /data/app/com.boldtv-1/base.apk
10-26 11:55:15.652  4534  4534 W PackageManager: Failure retrieving resources for com.boldtv
10-26 11:55:15.653  4534  4534 W asset   : Asset path /data/app/com.boldtv-1/base.apk is neither a directory nor file (type=1).
10-26 11:55:15.653  4534  4534 E ResourcesManager: failed to add asset path /data/app/com.boldtv-1/base.apk
10-26 11:55:15.656  4534  4534 W PackageManager: Failure retrieving resources for com.boldtv
10-26 11:55:15.668  4534  4534 W asset   : Asset path /data/app/com.boldtv-1/base.apk is neither a directory nor file (type=1).
10-26 11:55:15.668  4534  4534 E ResourcesManager: failed to add asset path /data/app/com.boldtv-1/base.apk
10-26 11:55:15.669  4534  4534 W PackageManager: Failure retrieving resources for com.boldtv
10-26 11:55:15.669  4534  4534 W asset   : Asset path /data/app/com.boldtv-1/base.apk is neither a directory nor file (type=1).
10-26 11:55:15.669  4534  4534 E ResourcesManager: failed to add asset path /data/app/com.boldtv-1/base.apk
10-26 11:55:15.669  4534  4534 W PackageManager: Failure retrieving resources for com.boldtv
10-26 11:55:15.685  2016  2016 D SoLoader: init start
10-26 11:55:15.686  2016  2016 D SoLoader: adding system library source: /vendor/lib
10-26 11:55:15.687  2016  2016 D SoLoader: adding system library source: /system/lib
10-26 11:55:15.689  2016  2016 D SoLoader: adding application source: com.facebook.soloader.DirectorySoSource[root = /data/app/com.boldtv-2/lib/arm flags = 0]
10-26 11:55:15.691  2016  2016 D SoLoader: adding backup  source: com.facebook.soloader.ApkSoSource[root = /data/data/com.boldtv/lib-main flags = 1]
10-26 11:55:15.693  2016  2016 D SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /system/lib flags = 2]
10-26 11:55:15.693  2016  2016 D SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /system/vendor/lib flags = 2]
10-26 11:55:15.694  2016  2016 D SoLoader: Preparing SO source: com.facebook.soloader.DirectorySoSource[root = /data/app/com.boldtv-2/lib/arm flags = 0]
10-26 11:55:15.694  2016  2016 D SoLoader: Preparing SO source: com.facebook.soloader.ApkSoSource[root = /data/data/com.boldtv/lib-main flags = 1]
10-26 11:55:15.701  2016  2016 V fb-UnpackingSoSource: locked dso store /data/user/0/com.boldtv/lib-main
10-26 11:55:15.704  4695  4695 E !!!!!   : focusId2
10-26 11:55:15.708  2016  2016 V fb-UnpackingSoSource: deps mismatch on deps store: regenerating
10-26 11:55:15.708  2016  2016 V fb-UnpackingSoSource: so store dirty: regenerating
10-26 11:55:15.713  4695  4695 I Choreographer: Skipped 131 frames!  The application may be doing too much work on its main thread.
10-26 11:55:15.732  4416  4430 I art     : Background partial concurrent mark sweep GC freed 44017(2MB) AllocSpace objects, 2(40KB) LOS objects, 33% free, 9MB/14MB, paused 3.564ms total 168.430ms
10-26 11:55:15.839  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libfb.so: deferring to libdir
10-26 11:55:15.840  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libfolly_json.so: deferring to libdir
10-26 11:55:15.840  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libglog.so: deferring to libdir
10-26 11:55:15.840  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libglog_init.so: deferring to libdir
10-26 11:55:15.841  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libgnustl_shared.so: deferring to libdir
10-26 11:55:15.841  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libicu_common.so: deferring to libdir
10-26 11:55:15.842  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libimagepipeline.so: deferring to libdir
10-26 11:55:15.842  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libjsc.so: deferring to libdir
10-26 11:55:15.843  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libprivatedata.so: deferring to libdir
10-26 11:55:15.843  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libreactnativejni.so: deferring to libdir
10-26 11:55:15.843  2016  2016 D ApkSoSource: not allowing consideration of lib/armeabi-v7a/libyoga.so: deferring to libdir
10-26 11:55:15.844  2016  2016 V fb-UnpackingSoSource: regenerating DSO store com.facebook.soloader.ApkSoSource
10-26 11:55:15.847  2016  2016 V fb-UnpackingSoSource: Finished regenerating DSO store com.facebook.soloader.ApkSoSource
10-26 11:55:15.848  2016  2016 V fb-UnpackingSoSource: starting syncer worker
10-26 11:55:15.864  2016  2016 V fb-UnpackingSoSource: releasing dso store lock for /data/user/0/com.boldtv/lib-main (from syncer thread)
10-26 11:55:15.865  2016  2016 V fb-UnpackingSoSource: not releasing dso store lock for /data/user/0/com.boldtv/lib-main (syncer thread started)
10-26 11:55:15.865  2016  2016 D SoLoader: init finish: 4 SO sources prepared
10-26 11:55:15.865  2016  2016 D SoLoader: init exiting
10-26 11:55:15.872  2016  2016 D ReactNative: ReactInstanceManager.ctor()
10-26 11:55:15.872  2016  2016 D SoLoader: init exiting
10-26 11:55:15.906  2016  2016 D NetworkSecurityConfig: No Network Security Config specified, using platform default
10-26 11:55:15.934  2016  2016 D SoLoader: init exiting
10-26 11:55:15.967  2016  2037 W unknown:InspectorPackagerConnection: Couldn't connect to packager, will silently retry
10-26 11:55:15.987  2016  2016 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
10-26 11:55:16.071  2016  2016 D ReactNative: ReactInstanceManager.createReactContextInBackground()
10-26 11:55:16.071  2016  2016 D ReactNative: ReactInstanceManager.recreateReactContextInBackgroundInner()
10-26 11:55:16.120  2016  2016 D ReactNative: ReactInstanceManager.onReloadWithJSDebugger()
10-26 11:55:16.122  2016  2016 D ReactNative: ReactInstanceManager.recreateReactContextInBackground()
10-26 11:55:16.122  2016  2016 D ReactNative: ReactInstanceManager.runCreateReactContextOnNewThread()
10-26 11:55:16.125  2016  2045 D SoLoader: About to load: libreactnativejni.so
10-26 11:55:16.126  2016  2016 W unknown:ReactNative: Packager connection already open, nooping.
10-26 11:55:16.126  2016  2045 D SoLoader: libreactnativejni.so not found on /data/data/com.boldtv/lib-main
10-26 11:55:16.127  2016  2045 D SoLoader: libreactnativejni.so found on /data/app/com.boldtv-2/lib/arm
10-26 11:55:16.127  2016  2045 D SoLoader: Not resolving dependencies for libreactnativejni.so
10-26 11:55:16.150  4105  4515 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:16.150  4105  4515 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:16.150  4105  4515 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:16.150  4105  4515 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:16.155  4105  4515 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:16.155  4105  4515 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:16.155  4105  4515 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:16.160  4105  4515 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:16.160  4105  4515 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:16.169  2016  2044 I OpenGLRenderer: Initialized EGL, version 1.4
10-26 11:55:16.169  2016  2044 D OpenGLRenderer: Swap behavior 1
10-26 11:55:16.181  2016  2045 D SoLoader: Loaded: libreactnativejni.so
10-26 11:55:16.206  4416  4442 I WindowManager: Switching to real app window: Window{efe7e08 u0 com.boldtv/com.boldtv.MainActivity}
10-26 11:55:16.211  4105  4516 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:16.211  4105  4516 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:16.211  4105  4516 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:16.264  4105  4870 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:16.264  4105  4870 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:16.264  4105  4870 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:16.265  4105  4870 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:16.269  4105  4870 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:16.269  4105  4870 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:16.270  4105  4870 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:16.277  4105  4870 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:16.277  4105  4870 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:16.283  2016  2045 D SoLoader: About to load: libfb.so
10-26 11:55:16.284  2016  2045 D SoLoader: libfb.so not found on /data/data/com.boldtv/lib-main
10-26 11:55:16.284  2016  2045 D SoLoader: libfb.so found on /data/app/com.boldtv-2/lib/arm
10-26 11:55:16.284  2016  2045 D SoLoader: Not resolving dependencies for libfb.so
10-26 11:55:16.286  2016  2045 D SoLoader: About to load: libfb.so
10-26 11:55:16.287  2016  2045 D SoLoader: libfb.so not found on /data/data/com.boldtv/lib-main
10-26 11:55:16.287  2016  2045 D SoLoader: libfb.so found on /data/app/com.boldtv-2/lib/arm
10-26 11:55:16.287  2016  2045 D SoLoader: Not resolving dependencies for libfb.so
10-26 11:55:16.287  2016  2045 I art     : Thread[21,tid=2045,Native,Thread*=0xda447a00,peer=0x12d8d790,"Thread-2"] recursive attempt to load library "/data/app/com.boldtv-2/lib/arm/libfb.so"
10-26 11:55:16.287  2016  2045 D SoLoader: Loaded: libfb.so
10-26 11:55:16.288  2016  2045 D SoLoader: Loaded: libfb.so
10-26 11:55:16.292  2016  2045 D ReactNative: ReactInstanceManager.createReactContext()
10-26 11:55:16.294  4105  4142 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:16.294  4105  4142 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:16.294  4105  4142 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:16.332  4416  4452 I ActivityManager: Displayed com.boldtv/.MainActivity: +829ms
10-26 11:55:16.344  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.reactnativenavigation.react.ElementViewManager
10-26 11:55:16.370  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.uimanager.LayoutShadowNode
10-26 11:55:16.387  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTGroupViewManager
10-26 11:55:16.388  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTGroupShadowNode
10-26 11:55:16.392  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTShapeViewManager
10-26 11:55:16.394  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTShapeShadowNode
10-26 11:55:16.399  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTTextViewManager
10-26 11:55:16.400  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTTextShadowNode
10-26 11:55:16.404  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.checkbox.ReactCheckBoxManager
10-26 11:55:16.410  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.picker.ReactDialogPickerManager
10-26 11:55:16.418  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.drawer.ReactDrawerLayoutManager
10-26 11:55:16.425  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.picker.ReactDropdownPickerManager
10-26 11:55:16.428  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollViewManager
10-26 11:55:16.443  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactHorizontalScrollContainerViewManager
10-26 11:55:16.451  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ReactProgressBarViewManager
10-26 11:55:16.458  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.progressbar.ProgressBarShadowNode
10-26 11:55:16.466  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.scroll.ReactScrollViewManager
10-26 11:55:16.485  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager
10-26 11:55:16.491  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.slider.ReactSliderManager$ReactSliderShadowNode
10-26 11:55:16.494  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager
10-26 11:55:16.500  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.switchview.ReactSwitchManager$ReactSwitchShadowNode
10-26 11:55:16.502  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.toolbar.ReactToolbarManager
10-26 11:55:16.513  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.webview.ReactWebViewManager
10-26 11:55:16.525  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.swiperefresh.SwipeRefreshLayoutManager
10-26 11:55:16.534  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTSurfaceViewManager
10-26 11:55:16.537  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.art.ARTSurfaceViewShadowNode
10-26 11:55:16.540  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageViewManager
10-26 11:55:16.540  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.frescosupport.FrescoBasedReactTextInlineImageShadowNode
10-26 11:55:16.545  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.image.ReactImageManager
10-26 11:55:16.555  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ReactModalHostManager
10-26 11:55:16.560  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.modal.ModalHostShadowNode
10-26 11:55:16.562  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextManager
10-26 11:55:16.564  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactRawTextShadowNode
10-26 11:55:16.568  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputManager
10-26 11:55:16.585  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.textinput.ReactTextInputShadowNode
10-26 11:55:16.594  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextViewManager
10-26 11:55:16.601  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactTextShadowNode
10-26 11:55:16.603  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.view.ReactViewManager
10-26 11:55:16.615  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.viewpager.ReactViewPagerManager
10-26 11:55:16.622  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextViewManager
10-26 11:55:16.623  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.facebook.react.views.text.ReactVirtualTextShadowNode
10-26 11:55:16.626  2016  2045 W unknown:ViewManagerPropertyUpdater: Could not find generated setter for class com.brentvatne.exoplayer.ReactExoplayerViewManager
10-26 11:55:16.658  2016  2045 D ReactNative: Initializing React Xplat Bridge.
10-26 11:55:16.663  2016  2045 D ReactNative: Initializing React Xplat Bridge before initializeBridge
10-26 11:55:16.667  2016  2045 D ReactNative: Initializing React Xplat Bridge after initializeBridge
10-26 11:55:16.668  2016  2045 D ReactNative: CatalystInstanceImpl.runJSBundle()
10-26 11:55:16.670  2016  2058 D ReactNative: ReactInstanceManager.setupReactContext()
10-26 11:55:16.670  2016  2058 D ReactNative: CatalystInstanceImpl.initialize()
10-26 11:55:16.672  2016  2016 W unknown:ReactNative: Packager connection already open, nooping.
10-26 11:55:16.687  2016  2058 D SoLoader: init exiting
10-26 11:55:16.708  2016  2057 W InstanceID: Instance ID SDK is deprecated, com.boldtv should update to use Firebase Instance ID
10-26 11:55:16.730  2016  2057 D ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/Webview/lib/arm:/system/priv-app/Webview/Webview.apk!/lib/armeabi-v7a:/system/lib:/vendor/lib for namespace 0xe8b07090
10-26 11:55:16.735  2016  2057 I WebViewFactory: Loading com.google.android.webview version 68.0.3440.91 (code 344009100)
10-26 11:55:16.783  2016  2057 I cr_LibraryLoader: Time to load native libraries: 3 ms (timestamps 9528-9531)
10-26 11:55:16.796  2016  2063 E cr_VariationsUtils: Failed reading seed file "/data/user/0/com.boldtv/app_webview/variations_seed_new": /data/user/0/com.boldtv/app_webview/variations_seed_new (No such file or directory)
10-26 11:55:16.798  2016  2016 I chromium: [INFO:library_loader_hooks.cc(36)] Chromium logging enabled: level = 0, default verbosity = 0
10-26 11:55:16.799  2016  2016 I cr_LibraryLoader: Expected native library version number "68.0.3440.91", actual native library version number "68.0.3440.91"
10-26 11:55:16.825  2016  2016 I cr_BrowserStartup: Initializing chromium process, singleProcess=true
10-26 11:55:16.827  2016  2016 I cr_base : Android Locale: en_US requires .pak files: []
10-26 11:55:16.873  2016  2016 I chromium: [INFO:aw_field_trial_creator.cc(52)] First-WebView-Experiment found, group=Control
10-26 11:55:16.911  2016  2079 E chromium: [ERROR:devtools_http_handler.cc(292)] Cannot start http server for devtools. Stop devtools.
10-26 11:55:16.968  2016  2035 W cr_CrashFileManager: /data/user/0/com.boldtv/cache/WebView/Crash Reports does not exist or is not a directory
10-26 11:55:17.106  2016  2057 W ResourceType: No package identifier when getting value for resource number 0x00000000
10-26 11:55:19.052  4942  4942 I WearableService: Wearable Services stopping
10-26 11:55:19.722  2016  2016 D ReactNative: ReactInstanceManager.attachRootViewToInstance()
10-26 11:55:19.724  2016  2016 D SoLoader: About to load: libyoga.so
10-26 11:55:19.724  2016  2016 D SoLoader: libyoga.so not found on /data/data/com.boldtv/lib-main
10-26 11:55:19.725  2016  2016 D SoLoader: libyoga.so found on /data/app/com.boldtv-2/lib/arm
10-26 11:55:19.725  2016  2016 D SoLoader: Not resolving dependencies for libyoga.so
10-26 11:55:19.728  2016  2016 D SoLoader: Loaded: libyoga.so
10-26 11:55:19.777  4105  4139 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:19.777  4105  4139 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:19.777  4105  4139 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:19.787  4105  4870 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:19.788  4105  4870 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:19.788  4105  4870 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:19.969  2016  2016 D ReactNative: ReactInstanceManager.detachViewFromInstance()
10-26 11:55:19.988  2016  2016 D ReactNative: ReactInstanceManager.attachRootViewToInstance()
10-26 11:55:20.038  2016  2021 I art     : Do partial code cache collection, code=30KB, data=30KB
10-26 11:55:20.044  2016  2021 I art     : After code cache collection, code=29KB, data=30KB
10-26 11:55:20.044  2016  2021 I art     : Increasing code cache capacity to 128KB
10-26 11:55:21.140  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@866132d
10-26 11:55:21.154  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@f1c1062
10-26 11:55:21.197  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@a3dc2b0
10-26 11:55:21.211  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@1bdb529
10-26 11:55:21.245  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@1aed0ae
10-26 11:55:21.253  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@f980e4f
10-26 11:55:21.278  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@83459dc
10-26 11:55:21.311  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@dd37ae5
10-26 11:55:21.327  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@49b49ba
10-26 11:55:21.344  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@671406b
10-26 11:55:21.378  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@d9b37c8
10-26 11:55:21.394  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@2c5e061
10-26 11:55:21.433  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@f617847
10-26 11:55:21.461  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@d100874
10-26 11:55:21.494  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@5ed5612
10-26 11:55:21.501  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@a3351e3
10-26 11:55:21.533  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@9d13a99
10-26 11:55:21.561  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@946c15e
10-26 11:55:21.594  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@baff20c
10-26 11:55:21.601  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@6f1e755
10-26 11:55:21.633  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@71a5b
10-26 11:55:21.661  2016  2016 W unknown:WrappingUtils: Don't know how to round that drawable: com.facebook.drawee.drawable.RoundedColorDrawable@a7022f8
10-26 11:55:21.837  2016  2021 I art     : Do partial code cache collection, code=55KB, data=61KB
10-26 11:55:21.837  2016  2021 I art     : After code cache collection, code=54KB, data=61KB
10-26 11:55:21.839  2016  2021 I art     : Increasing code cache capacity to 256KB
10-26 11:55:22.114  2016  2044 E OpenGLRenderer: GL error:  GL_INVALID_VALUE
10-26 11:55:22.114  2016  2044 F OpenGLRenderer: GL errors! frameworks/base/libs/hwui/BakedOpRenderer.cpp:67
10-26 11:55:22.199  2103  2044 F google-breakpad: Microdump skipped (uninteresting)
10-26 11:55:22.213  2016  2044 W google-breakpad: ### ### ### ### ### ### ### ### ### ### ### ### ###
10-26 11:55:22.213  2016  2044 W google-breakpad: Chrome build fingerprint:
10-26 11:55:22.213  2016  2044 W google-breakpad: 68.0.3440.91
10-26 11:55:22.213  2016  2044 W google-breakpad: 344009100
10-26 11:55:22.213  2016  2044 W google-breakpad: ### ### ### ### ### ### ### ### ### ### ### ### ###
10-26 11:55:22.214  2016  2044 F libc    : Fatal signal 6 (SIGABRT), code -6 in tid 2044 (RenderThread)
10-26 11:55:22.214  4046  4046 W         : debuggerd: handling request: pid=2016 uid=10066 gid=10066 tid=2044
10-26 11:55:22.261  2104  2104 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
10-26 11:55:22.261  2104  2104 F DEBUG   : Build fingerprint: 'Amlogic/p281/p281:7.1.2/NHG47L/20180908:userdebug/test-keys'
10-26 11:55:22.261  2104  2104 F DEBUG   : Revision: '0'
10-26 11:55:22.261  2104  2104 F DEBUG   : ABI: 'arm'
10-26 11:55:22.262  2104  2104 F DEBUG   : pid: 2016, tid: 2044, name: RenderThread  >>> com.boldtv <<<
10-26 11:55:22.262  2104  2104 F DEBUG   : signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
10-26 11:55:22.268  2104  2104 F DEBUG   : Abort message: 'GL errors! frameworks/base/libs/hwui/BakedOpRenderer.cpp:67'
10-26 11:55:22.268  2104  2104 F DEBUG   :     r0 00000000  r1 000007fc  r2 00000006  r3 00000008
10-26 11:55:22.268  2104  2104 F DEBUG   :     r4 cccc5978  r5 00000006  r6 cccc5920  r7 0000010c
10-26 11:55:22.268  2104  2104 F DEBUG   :     r8 00000000  r9 e72d8268  sl e72d82e0  fp e61b4538
10-26 11:55:22.268  2104  2104 F DEBUG   :     ip 00000000  sp cccc4ec0  lr e68e68f7  pc e68e9154  cpsr 20070010
10-26 11:55:22.276  2104  2104 F DEBUG   :
10-26 11:55:22.276  2104  2104 F DEBUG   : backtrace:
10-26 11:55:22.276  2104  2104 F DEBUG   :     #00 pc 0004a154  /system/lib/libc.so (tgkill+12)
10-26 11:55:22.276  2104  2104 F DEBUG   :     #01 pc 000478f3  /system/lib/libc.so (pthread_kill+34)
10-26 11:55:22.276  2104  2104 F DEBUG   :     #02 pc 0001dc15  /system/lib/libc.so (raise+10)
10-26 11:55:22.276  2104  2104 F DEBUG   :     #03 pc 00019761  /system/lib/libc.so (__libc_android_abort+34)
10-26 11:55:22.277  2104  2104 F DEBUG   :     #04 pc 00017348  /system/lib/libc.so (abort+4)
10-26 11:55:22.277  2104  2104 F DEBUG   :     #05 pc 0000c259  /system/lib/libcutils.so (__android_log_assert+112)
10-26 11:55:22.277  2104  2104 F DEBUG   :     #06 pc 00060d05  /system/lib/libhwui.so
10-26 11:55:22.277  2104  2104 F DEBUG   :     #07 pc 00024257  /system/lib/libhwui.so
10-26 11:55:22.277  2104  2104 F DEBUG   :     #08 pc 00023e91  /system/lib/libhwui.so
10-26 11:55:22.277  2104  2104 F DEBUG   :     #09 pc 00025a73  /system/lib/libhwui.so
10-26 11:55:22.277  2104  2104 F DEBUG   :     #10 pc 00029035  /system/lib/libhwui.so (_ZN7android10uirenderer12renderthread12RenderThread10threadLoopEv+80)
10-26 11:55:22.277  2104  2104 F DEBUG   :     #11 pc 0000e39d  /system/lib/libutils.so (_ZN7android6Thread11_threadLoopEPv+140)
10-26 11:55:22.277  2104  2104 F DEBUG   :     #12 pc 000666a5  /system/lib/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+80)
10-26 11:55:22.277  2104  2104 F DEBUG   :     #13 pc 000473c3  /system/lib/libc.so (_ZL15__pthread_startPv+22)
10-26 11:55:22.277  2104  2104 F DEBUG   :     #14 pc 0001a1ad  /system/lib/libc.so (__start_thread+6)
10-26 11:55:24.544  4416  2110 W ActivityManager:   Force finishing activity com.boldtv/.MainActivity
10-26 11:55:24.552  4416  2110 W ActivityManager:   Force finishing activity com.boldtv/.MainActivity
10-26 11:55:24.552  4416  2110 W ActivityManager: Duplicate finish request for ActivityRecord{182a7c0 u0 com.boldtv/.MainActivity t384 f}
10-26 11:55:24.553  4416  4446 W ActivityManager: Skipping crash dialog of ProcessRecord{b9c644c 2016:com.boldtv/u0a66}: com.boldtv
10-26 11:55:24.555  4046  4046 W         : debuggerd: resuming target 2016
10-26 11:55:24.555  4416  4449 I BootReceiver: Copying /data/tombstones/tombstone_09 to DropBox (SYSTEM_TOMBSTONE)
10-26 11:55:24.643  4416  4471 W InputDispatcher: channel 'efe7e08 com.boldtv/com.boldtv.MainActivity (server)' ~ Consumer closed input channel or an error occurred.  events=0x9
10-26 11:55:24.643  4416  4471 E InputDispatcher: channel 'efe7e08 com.boldtv/com.boldtv.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
10-26 11:55:24.650  4121  4121 I Zygote  : Process 2016 exited due to signal (6)
10-26 11:55:24.652  4416  4443 D GraphicsStats: Buffer count: 4
10-26 11:55:24.652  4416  5052 I WindowManager: WIN DEATH: Window{efe7e08 u0 com.boldtv/com.boldtv.MainActivity}
10-26 11:55:24.652  4416  5052 W InputDispatcher: Attempted to unregister already unregistered input channel 'efe7e08 com.boldtv/com.boldtv.MainActivity (server)'
10-26 11:55:24.653  4416  6532 I ActivityManager: Process com.boldtv (pid 2016) has died
10-26 11:55:24.653  4416  6532 D ActivityManager: cleanUpApplicationRecord -- 2016
10-26 11:55:24.680  4105  4516 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.680  4105  4516 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.680  4105  4516 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.680  4105  4516 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.685  4105  4516 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.685  4105  4516 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.685  4105  4516 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.690  4105  4516 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.690  4105  4516 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.752  4105  4515 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.752  4105  4515 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.752  4105  4515 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.766  4105  4139 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.766  4105  4139 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.766  4105  4139 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.767  4105  4139 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.772  4105  4139 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.772  4105  4139 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.773  4105  4139 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.777  4105  4139 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.777  4105  4139 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.798  4105  4516 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.798  4105  4516 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.798  4105  4516 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.809  4105  4515 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.809  4105  4515 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.809  4105  4515 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.880  4105  4139 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.880  4105  4139 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.881  4105  4139 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:24.927  4105  4139 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:24.927  4105  4139 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:24.927  4105  4139 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:26.350  4105  4870 E ion     : ioctl c0144900 failed with code -1: No such device
10-26 11:55:26.350  4105  4870 E ion     : ioctl c0144900 failed with code -1: Operation not permitted
10-26 11:55:26.350  4105  4870 D gralloc : (-1) Failed to alloc ion cma mem, alloc from system ion buffer.
10-26 11:55:27.910  4416  4416 D AlarmManager: targetPackage = null
acollazomayer commented 6 years ago

I do the same thing with v1, I just wanted to upgrade to v2 because it has a better API in my opinion

acollazomayer commented 6 years ago

Found the issue, it was a problem with LayoutAnimation.

alexey-chernikov commented 5 years ago

@acollazomayer Could you please describe, what problem with LayoutAnimation did you have? I have same situation, app just crash on setRoot()