Skip to content

Commit

Permalink
Fix #867 Android Auto not showing up as an option from bad Google spe…
Browse files Browse the repository at this point in the history
…cific AndroidManifest definition
  • Loading branch information
daneren2005 committed Jul 29, 2018
1 parent 2f2a031 commit cc3344c
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions app/src/google/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,23 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="github.daneren2005.dsub">

<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIUhOMtwa_eG-f0oYUHnetl_Cz7cO9zae8ZXOK5w" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.gms.car.application"
android:resource="@xml/auto_app_description" />
<meta-data
android:name="com.google.android.gms.car.notification.SmallIcon"
android:resource="@drawable/stat_notify_playing" />
<application android:label="@string/common.appname"
android:backupAgent="github.daneren2005.dsub.util.SettingsBackupAgent"
android:icon="@drawable/launch"
android:theme="@style/Theme.DSub.Light">

<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIUhOMtwa_eG-f0oYUHnetl_Cz7cO9zae8ZXOK5w" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.gms.car.application"
android:resource="@xml/auto_app_description" />
<meta-data
android:name="com.google.android.gms.car.notification.SmallIcon"
android:resource="@drawable/stat_notify_playing" />
</application>

</manifest>

0 comments on commit cc3344c

Please sign in to comment.