having trouble connecting and staying connected to a chromebook. i can get it to connect for a few seconds after a fresh reboot but it will drop and will need a reboot to connect again. Here is the log. i hope this helps.
[instance_information]
app_version: 3.11.2
cu_version: n/a
platform_name: Android 9
location: Yes
location_authorized: No
[device_information]
model: HP Chromebook x360 11 G1 EE
manufacturer: Google
serial: A6A12580127EE14AA2E2
[debug_log]
[2019-11-10 19:23:42] track selected: no
[2019-11-10 19:23:41] app.db.init: pragma user_version 13
[2019-11-10 19:22:03] track selected: no
[2019-11-10 19:22:02] app.db.init: pragma user_version 13
[2019-11-10 19:20:35] app.ui.dialogs.about (debug sending): write completed
[2019-11-10 19:20:06] track selected: no
[2019-11-10 19:20:05] app.db.init: pragma user_version 13
[2019-11-10 19:18:59] track selected: no
[2019-11-10 19:18:59] app.db.init: pragma user_version 13
[2019-11-10 19:17:33] app.platform.init_android: app was left manually.
[2019-11-10 19:17:05] track selected: no
[2019-11-10 19:17:04] app.db.init: pragma user_version 13
[2019-11-10 19:15:15] app.platform.init_android: app was left manually.
[2019-11-10 19:11:27] track selected: no
[2019-11-10 19:11:26] app.db.init: pragma user_version 13
[2019-11-10 19:11:20] app.platform.init_android: app was left manually.
[2019-11-10 19:07:19] track selected: no
[2019-11-10 19:07:18] app.db.init: pragma user_version 13
[2019-11-10 19:02:22] app.platform.init_android: app was left manually.
[2019-11-10 19:02:00] track selected: no
[2019-11-10 19:01:55] app.db.init: pragma user_version 13
[2019-11-10 19:00:11] track selected: no
[2019-11-10 19:00:10] app.db.init: pragma user_version 13
[2019-11-10 19:00:04] app.platform.init_android: app was left manually.
[2019-11-10 18:58:24] track selected: no
[2019-11-10 18:58:23] app.db.init: pragma user_version 13
[2019-11-10 18:58:09] app.platform.init_android: app was left manually.
[options]
app.options.sound_output_type: queue
app.options.sound_new_leader: speech
app.options.display_fullscreen_button: yes
app.options.timetable_sorting: dynamic
app.options.sound_race_volume: 0.6
app.options.sound_sector_personal_best: none
app.options.show_connection_advice: no
app.options.ignore_ai_car: yes
app.options.display_start_button: yes
app.options.sound_vsc_ending: speech
app.options.sound_race: sounds/race.mp3
app.options.sound_current_leader: speech
app.options.show_average_lap_speed: always
app.options.sound_halftime_race: speech
app.options.sound_penalty_served: speech
app.options.sound_pitstop_complete: speech
app.options.sound_in_pits: both
app.options.background_opacity: 0
app.options.sound_applause_2nd: speech
app.options.sound_tts_rate: 1.6
app.options.lapcounter_display: forwards
app.options.sound_low_fuel: speech
app.options.sound_two_laps: speech
app.options.sound_2_minutes: speech
app.options.sound_halftime_qualifying: speech
app.options.sound_language: en-GB
app.options.sound_applause_qual: both
app.options.sound_sector_overall_best: none
app.options.sound_bell: speech
app.options.sound_race_start: yes
app.options.show_timetable_advice: no
app.options.sound_ten_laps: speech
app.options.display_vsc_button: yes
app.options.sound_10_minutes: speech
app.options.sound_last_lap: speech
app.options.display_esc_button: yes
app.options.sound_vsc_deployed: speech
app.options.display_grid_lights: yes
app.options.sound_five_laps: speech
app.options.active_track: 0
app.options.vsc_brakes: 0
app.options.finish_style_time: instant
app.options.vsc_deploy_time: 20
app.options.sound_bell_alt: speech
app.options.show_crossed_indicator: 3000
app.options.debug_mode: yes
app.options.sound_caution: speech
app.options.timetable_display_image: logo
app.options.sound_tire_change_complete: speech
app.options.sound_5_minutes: speech
app.options.stop_after_event_end: no
app.options.sound_last_minute: speech
app.options.vsc_speed: 0
app.options.language: en
app.options.sound_tank_empty: speech
app.options.increase_grid_lights: yes
app.options.sound_applause_3rd: speech
app.options.sound_pits_warning: generic
app.options.display_active_track: no
app.options.ignore_safety_car: yes
app.options.sound_applause: both
app.options.background: url(img/bg/start_grid_blur.jpg) no-repeat center
app.options.race_finish_style: first
app.options.display_penalty_button: yes
app.options.background_custom:
app.options.show_sector_times: always
[database]
DROP TABLE IF EXISTS drivers;
CREATE TABLE drivers (id integer primary key autoincrement, name text NOT NULL, name_tts text NOT NULL, team integer, image text);
DROP TABLE IF EXISTS teams;
CREATE TABLE teams (id integer primary key autoincrement, name text NOT NULL, location text, comment text, image text);
DROP TABLE IF EXISTS cars;
CREATE TABLE cars (id integer primary key autoincrement, name text NOT NULL, manufacturer text, scale text, tyres text, logo text, image text, speed integer, brakes integer, fuel integer, changed_on text, laps integer, interval integer, interval_counter integer, comment text, sound text);
DROP TABLE IF EXISTS tracks;
CREATE TABLE tracks (id integer primary key autoincrement, name text NOT NULL, length text, minimum_lap_time text, maximum_lap_time text, pitstop_delta text, image text);
DROP TABLE IF EXISTS championships;
CREATE TABLE championships (id integer primary key autoincrement, name text NOT NULL, type text, races integer, points text, participants text, cars text, used_controllers text, comment text, image text);
DROP TABLE IF EXISTS records;
CREATE TABLE records (id integer primary key autoincrement, track_id integer, driver_id integer, car_id integer, laptime integer, sector_times text, date text);
DROP TABLE IF EXISTS `history_event`;
CREATE TABLE history_event (id integer primary key autoincrement, title text, duration integer, type text, target_time integer, target_laps integer, best_laptime integer, track_id integer, championship_id, date text, ticker text, publish_id integer);
DROP TABLE IF EXISTS `history_event_result`;
CREATE TABLE history_event_result (id integer primary key autoincrement, event_id integer, position integer, driver_id integer, car_id integer, controller_id integer, laps integer, best_laptime integer, pitstops integer, gap text);
DROP TABLE IF EXISTS `history_event_lap`;
CREATE TABLE history_event_lap (id integer primary key autoincrement, event_id integer, controller_id integer, lap_number integer, lap_time integer, leader integer, position integer, pitstop integer, pitstop_duration text);
DROP TABLE IF EXISTS backups;
CREATE TABLE backups (id integer primary key autoincrement, date text, file text);
[instance_information]
app_version: 3.11.2
cu_version: n/a
platform_name: Android 9
location: Yes
location_authorized: No
[device_information]
model: HP Chromebook x360 11 G1 EE
manufacturer: Google
serial: A6A12580127EE14AA2E2
[debug_log]
[2019-11-10 19:23:42] track selected: no
[2019-11-10 19:23:41] app.db.init: pragma user_version 13
[2019-11-10 19:22:03] track selected: no
[2019-11-10 19:22:02] app.db.init: pragma user_version 13
[2019-11-10 19:20:35] app.ui.dialogs.about (debug sending): write completed
[2019-11-10 19:20:06] track selected: no
[2019-11-10 19:20:05] app.db.init: pragma user_version 13
[2019-11-10 19:18:59] track selected: no
[2019-11-10 19:18:59] app.db.init: pragma user_version 13
[2019-11-10 19:17:33] app.platform.init_android: app was left manually.
[2019-11-10 19:17:05] track selected: no
[2019-11-10 19:17:04] app.db.init: pragma user_version 13
[2019-11-10 19:15:15] app.platform.init_android: app was left manually.
[2019-11-10 19:11:27] track selected: no
[2019-11-10 19:11:26] app.db.init: pragma user_version 13
[2019-11-10 19:11:20] app.platform.init_android: app was left manually.
[2019-11-10 19:07:19] track selected: no
[2019-11-10 19:07:18] app.db.init: pragma user_version 13
[2019-11-10 19:02:22] app.platform.init_android: app was left manually.
[2019-11-10 19:02:00] track selected: no
[2019-11-10 19:01:55] app.db.init: pragma user_version 13
[2019-11-10 19:00:11] track selected: no
[2019-11-10 19:00:10] app.db.init: pragma user_version 13
[2019-11-10 19:00:04] app.platform.init_android: app was left manually.
[2019-11-10 18:58:24] track selected: no
[2019-11-10 18:58:23] app.db.init: pragma user_version 13
[2019-11-10 18:58:09] app.platform.init_android: app was left manually.
[options]
app.options.sound_output_type: queue
app.options.sound_new_leader: speech
app.options.display_fullscreen_button: yes
app.options.timetable_sorting: dynamic
app.options.sound_race_volume: 0.6
app.options.sound_sector_personal_best: none
app.options.show_connection_advice: no
app.options.ignore_ai_car: yes
app.options.display_start_button: yes
app.options.sound_vsc_ending: speech
app.options.sound_race: sounds/race.mp3
app.options.sound_current_leader: speech
app.options.show_average_lap_speed: always
app.options.sound_halftime_race: speech
app.options.sound_penalty_served: speech
app.options.sound_pitstop_complete: speech
app.options.sound_in_pits: both
app.options.background_opacity: 0
app.options.sound_applause_2nd: speech
app.options.sound_tts_rate: 1.6
app.options.lapcounter_display: forwards
app.options.sound_low_fuel: speech
app.options.sound_two_laps: speech
app.options.sound_2_minutes: speech
app.options.sound_halftime_qualifying: speech
app.options.sound_language: en-GB
app.options.sound_applause_qual: both
app.options.sound_sector_overall_best: none
app.options.sound_bell: speech
app.options.sound_race_start: yes
app.options.show_timetable_advice: no
app.options.sound_ten_laps: speech
app.options.display_vsc_button: yes
app.options.sound_10_minutes: speech
app.options.sound_last_lap: speech
app.options.display_esc_button: yes
app.options.sound_vsc_deployed: speech
app.options.display_grid_lights: yes
app.options.sound_five_laps: speech
app.options.active_track: 0
app.options.vsc_brakes: 0
app.options.finish_style_time: instant
app.options.vsc_deploy_time: 20
app.options.sound_bell_alt: speech
app.options.show_crossed_indicator: 3000
app.options.debug_mode: yes
app.options.sound_caution: speech
app.options.timetable_display_image: logo
app.options.sound_tire_change_complete: speech
app.options.sound_5_minutes: speech
app.options.stop_after_event_end: no
app.options.sound_last_minute: speech
app.options.vsc_speed: 0
app.options.language: en
app.options.sound_tank_empty: speech
app.options.increase_grid_lights: yes
app.options.sound_applause_3rd: speech
app.options.sound_pits_warning: generic
app.options.display_active_track: no
app.options.ignore_safety_car: yes
app.options.sound_applause: both
app.options.background: url(img/bg/start_grid_blur.jpg) no-repeat center
app.options.race_finish_style: first
app.options.display_penalty_button: yes
app.options.background_custom:
app.options.show_sector_times: always
[database]
DROP TABLE IF EXISTS drivers;
CREATE TABLE drivers (id integer primary key autoincrement, name text NOT NULL, name_tts text NOT NULL, team integer, image text);
DROP TABLE IF EXISTS teams;
CREATE TABLE teams (id integer primary key autoincrement, name text NOT NULL, location text, comment text, image text);
DROP TABLE IF EXISTS cars;
CREATE TABLE cars (id integer primary key autoincrement, name text NOT NULL, manufacturer text, scale text, tyres text, logo text, image text, speed integer, brakes integer, fuel integer, changed_on text, laps integer, interval integer, interval_counter integer, comment text, sound text);
DROP TABLE IF EXISTS tracks;
CREATE TABLE tracks (id integer primary key autoincrement, name text NOT NULL, length text, minimum_lap_time text, maximum_lap_time text, pitstop_delta text, image text);
DROP TABLE IF EXISTS championships;
CREATE TABLE championships (id integer primary key autoincrement, name text NOT NULL, type text, races integer, points text, participants text, cars text, used_controllers text, comment text, image text);
DROP TABLE IF EXISTS records;
CREATE TABLE records (id integer primary key autoincrement, track_id integer, driver_id integer, car_id integer, laptime integer, sector_times text, date text);
DROP TABLE IF EXISTS `history_event`;
CREATE TABLE history_event (id integer primary key autoincrement, title text, duration integer, type text, target_time integer, target_laps integer, best_laptime integer, track_id integer, championship_id, date text, ticker text, publish_id integer);
DROP TABLE IF EXISTS `history_event_result`;
CREATE TABLE history_event_result (id integer primary key autoincrement, event_id integer, position integer, driver_id integer, car_id integer, controller_id integer, laps integer, best_laptime integer, pitstops integer, gap text);
DROP TABLE IF EXISTS `history_event_lap`;
CREATE TABLE history_event_lap (id integer primary key autoincrement, event_id integer, controller_id integer, lap_number integer, lap_time integer, leader integer, position integer, pitstop integer, pitstop_duration text);
DROP TABLE IF EXISTS backups;
CREATE TABLE backups (id integer primary key autoincrement, date text, file text);
You need to be logged in to add a comment.