Can anyone help me clarify what does "Your application crashed when launch on phone" means for a wear os companion app? I tested my wear os app on API 28 and API 30, everything works fine. It is just an incremental update, but it keeps getting rejected recently by google play.
Google Play reject my wear os companion app with crashed when launch on phone
381 Views Asked by Yingding Wang At
2
There are 2 best solutions below
1
theyDrops
On
You have any update on this? Same thing just happened to me, got rejected on an incremental update. I then tried preventing the installation on a phone like this:
<uses-library android:name="com.google.android.wearable" android:required="true" />
Then it got rejected because they couldn't install it on a phone anymore
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in GOOGLE-PLAY
- Android bundle identifier for different appstores
- Android app versionCode too large
- Android: Publishing and Signing same application for many customers
- Google play services doesnt displays leaderboard after Auth
- Black screen after updating Google Play Services:7.5.0
- Unity3D 5 packages conflict
- Google Play Alpha test links to production APK
- Google App indexing for games
- How to remove Rejected Apps from Developer Console
- Deploying an Android app on devices without Play Store account
- Android app install verification
- not able to get advertising id in android
- Is it possible to have multiple APK support according to countries in google play?
- Different app name in play store
- Android - Bypassing install permission programmatically for enterprise apps from third-party sources
Related Questions in WEAR-OS
- Android wear action remotely activates a service in handheld
- Android Wear Device as iBeacon
- Crosswalk Chomium API : Blank View on Wear
- Offline Speech Recognition on Android Wear
- Delay in Android Wear putDataItem() and invoking of onDataChanged()
- Android Wear Data Transmission: Messages, WearableListener or Channel?
- Does Wearable.DataApi.getDataItems users UriMatcher
- WearableListenerService doesn't receive data
- Android Wear App rejected, need to implement Round screen compatibility? how?
- Cannot access Workout Exercises on Google Fitness API
- Can I use android wear voice reply without using notificationcompat.builder?
- Will wearable service ever be killed?
- HTTPS connection on wi-fi enabled Android Wear without phone tethering
- MeteorJS On Watch OS
- Android Wear ChannelApi examples?
Related Questions in ANDROID-WEAR-2.0
- Android Wear 2.0 on swipe back close the app
- How to request and hold Wi-Fi connection on Android Wear 2.0
- CircularProgressLayout not double clicking in Espresso
- Preventing App from Being Put to Sleep in Wear OS 4
- Android Wear OS Health Services - Sleep Detection
- WearOS Health Services Spot Measurements
- WearOS app rejected because of "show scrollbars"
- execute thread and invalidate screen in every second in wear OS android
- Is there a way to create something likea draggable menu in wearable device in Android?
- How can I check the battery level of my Bluetooth connected phone in the standalone smartwatch app or watchface?
- send UDP messages from Wear OS via Bluetooth
- Flutter reposition keyboard down
- Android Wear WearableListenerService doesn't trigger on Android 8 Oreo when app closed
- Updating more Frequently in Ambient Mode not working - Android Wear / WearOS
- How to launch the application when the watch is near mouth
Related Questions in ANDROID-WEAR-3.0
- WearOS app rejected because of "show scrollbars"
- My Wear OS app always rejected because it doesn't show scrollbar
- How can I keep my app on Galaxy watch4 alive and the service running during watch idle mode?
- Are not-standalone (companion) Wear OS apps still allowed for submission on the Play Store, or are they always rejected?
- Android Studio Build Wear OS module not building
- How to check Internet available on app running on wear OS 3 (Samsung Galaxy Watch 4)
- Can't find my app in Wear OS 3.0 Google Playstore
- autoSizeTextType property for wear LayoutElementBuilders.Text
- There are no icons in complications on Pixel Watch and in the api30 emulator
- WearOS 3 Hide swipe top guesture, for Quick Settings Panel and use Navigation Drawer
- How do I change Watch Faces on Wear OS 3.2 programmatically
- How to implement real-time voice feature in Stand alone Android Wear Application?
- Our Wear OS app not listed on the Google Play
- Google Play reject my wear os companion app with crashed when launch on phone
- Can .NET 6.0 with Xamarin be used to develop Android Wear 3 apps?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To post an update on this issue, long story short. For my android app with wear os companion, It was my android apps' problem with the release build using
minificationandshrinkResourceswithproguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'following the android doc. Theproguard-android-optimizerenamed a couple of class names so that the start of explicit intent crash on all android devices.The unfortunate things are:
crashreport on google play. (I don't know why this is possible)