remote_config/testapp/src/android/java/com/google/firebase/example/LoggingUtils.java [32:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static void initLogWindow(Activity activity) {
    LinearLayout linearLayout = new LinearLayout(activity);
    ScrollView scrollView = new ScrollView(activity);
    TextView textView = new TextView(activity);
    linearLayout.addView(scrollView);
    scrollView.addView(textView);
    Window window = activity.getWindow();
    window.takeSurface(null);
    window.setContentView(linearLayout);
    sTextView = textView;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



messaging/testapp/src/android/java/com/google/firebase/example/LoggingUtils.java [32:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static void initLogWindow(Activity activity) {
    LinearLayout linearLayout = new LinearLayout(activity);
    ScrollView scrollView = new ScrollView(activity);
    TextView textView = new TextView(activity);
    linearLayout.addView(scrollView);
    scrollView.addView(textView);
    Window window = activity.getWindow();
    window.takeSurface(null);
    window.setContentView(linearLayout);
    sTextView = textView;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



