We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug After updating the manifest and trying the app to attach real device then app is not visible.
To Reproduce Just set up the template of message and grid and run build and connect with real android auto in car then app is not showing
Expected behavior App icon need to visible in android auto
Android Auto (please complete the following information):
Additional context Here is our manifest file Please check below.
<application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:enableOnBackInvokedCallback="true" android:roundIcon="@mipmap/ic_launcher_round" android:requestLegacyExternalStorage="true" android:usesCleartextTraffic="true" android:allowBackup="false" android:theme="@style/BootTheme" android:supportsRtl="true"> <meta-data android:name="com.google.android.gms.car.application" android:resource="@xml/automotive_app_desc" /> <meta-data android:name="com.google.android.gms.car.notification.SmallIcon" android:resource="@mipmap/ic_launcher" /> <activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:launchMode="singleTask" android:windowSoftInputMode="adjustPan" android:screenOrientation="portrait" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name="org.birkir.carplay.CarPlayService" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:exported="true" > <intent-filter> <action android:name="androidx.car.app.CarAppService"/> </intent-filter> <intent-filter> <action android:name="org.birkir.carplay.APP_RELOAD" /> </intent-filter> <meta-data android:name="android.car.media.SERVICE" android:value="true"/> </service> </application>
The text was updated successfully, but these errors were encountered:
@birkir please check this
Sorry, something went wrong.
No branches or pull requests
Describe the bug
After updating the manifest and trying the app to attach real device then app is not visible.
To Reproduce
Just set up the template of message and grid and run build and connect with real android auto in car then app is not showing
Expected behavior
App icon need to visible in android auto
Android Auto (please complete the following information):
Additional context
Here is our manifest file Please check below.
The text was updated successfully, but these errors were encountered: