After seeing the articles about the new files being in the latest beta version I took a dive in and looked to see how to enable it. Here's some basic steps for that.
Now just restart your phone and connect to Android auto. You will need to enable coolwalk on the head unit settings. To switch from full screen and condensed press and hold the new UI home button. I need another phone to show off cast, but it does work. You just can't do Netflix/Hulu what not. You also need to be in park. I haven't found what to change to eliminate that. Anyone else wants to help give it a shot.
UPDATE: if you have sqlite3 installed with magisk you can also create a trigger like so in termux.
1. You will need to be rooted and on the latest beta. "7.3.120244-release.daily"
2. Download a database editor, I used SQLite Editor.
3. Open SQLite and under "apps" section navigate to Google Play Services and open it.
4. Scroll down to phenotype.db and select it.
5. Look for "flags" and open it.
6. On the top select "set filter" input Coolwalk__enabled.
7. change all bootVal from 0 to 1.
8. Now search for cakewalk and do the same.
9. Lastly search for MirrorApp__enabled and change those.
Now just restart your phone and connect to Android auto. You will need to enable coolwalk on the head unit settings. To switch from full screen and condensed press and hold the new UI home button. I need another phone to show off cast, but it does work. You just can't do Netflix/Hulu what not. You also need to be in park. I haven't found what to change to eliminate that. Anyone else wants to help give it a shot.
UPDATE: if you have sqlite3 installed with magisk you can also create a trigger like so in termux.
Code:
Su
Sqlite3
.open /data/data/com.google.android.gms/databases/phenotype.db
CREATE TRIGGER after_update
AFTER UPDATE ON Flags
BEGIN
UPDATE Flags SET boolVal=1 WHERE name='Coolwalk__enabled';UPDATE Flags SET boolVal=1 WHERE name='MirrorApp__enabled';UPDATE Flags SET boolVal=1 WHERE name LIKE 'Coolwalk__%' AND boolVal=0;
END;
Attachments
-
PXL_20220131_120127343.jpg1.9 MB · Views: 3,438
-
PXL_20220131_120527706.jpg1.3 MB · Views: 3,291
-
PXL_20220131_122129371.jpg1.8 MB · Views: 3,793
-
Screenshot_20220131-122336_SQLite_Editor.png176 KB · Views: 3,436
-
Screenshot_20220131-122314_SQLite_Editor~2.png67.3 KB · Views: 3,111
-
Screenshot_20220131-122302_SQLite_Editor~2.png66.9 KB · Views: 3,408
Last edited: