How to make android app available on a chrome book?

Viewed 22

I've got a android app on the play store that works perfectly for android phones and tablets, now I would like to make it availible for chromeOS chromebooks. Right now if I go to my app on the app store on a chromebook, it shows as unsupported for this device. How do I make it supported?

The targetSdkVersion is 33, and these are my permissions in the manifest file:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission
    android:name="android.permission.WRITE_EXTERNAL_STORAGE"
    tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.CAMERA2" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
<uses-permission android:name="android.permission.USE_BIOMETRIC"/>

<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.touchscreen"
    android:required="false" />
<queries>
    <intent>
        <action android:name="android.media.action.IMAGE_CAPTURE" />
    </intent>
</queries>

This is the app on the playstore: https://play.google.com/store/apps/details?id=mobile.money.first

I'm not sure what other details to put up, so feel free to hit me up with any questions you have :)

0 Answers
Related