We are facing issue when trying to push a android wearable app to Samsung Gear with Android OS.
The below steps we have followed.
1.Copy the signed wearable app to your handheld project's res/raw directory. We'll refer to the APK as wearable_app.apk.
2.Create a res/xml/wearable_app_desc.xml file that contains the version and path information of the wearable app. For example:
<wearableApp package="wearable.app.package.name">
<versionCode>1</versionCode>
<versionName>1.0</versionName>
<rawPathResId>wearable_app</rawPathResId>
</wearableApp>
The package, versionCode, and versionName are the same values specified in the wearable app's AndroidManifest.xml file. The rawPathResId is the static variable name of the APK resource. For example, for wearable_app.apk, the static variable name is wearable_app.
3.Add a meta-data tag to your handheld app's tag to reference the wearable_app_desc.xml file.
<meta-data android:name="com.google.android.wearable.beta.app"
android:resource="@xml/wearable_app_desc"/>
But after the host app is installed aon device, it is not pushing the app to samsung gear android after connecting through bluetooth. Note: Please note that the same is working on other android watch devices.
Please guide me, if iam missing anything in above process, or do i need to add anything related to samsung gear android.