-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
need to wrap android bundle without converting it into apk #51
Comments
Hi @sagamagus, So that we understand your scenario, are you publishing your app as a public Google Play Store listing, or is this a private listing? |
Hi @rygo-msft , Our scenario is quite the same. We are uploading the app to public Google Play store listing. New Google Play policy allows only .aab (App Bundle) binaries to be uploaded. So we need the wrapping tool to support .aab binaries. |
Hello @sagamagus and @zalaris, the new Google policy applies to apps published to the public Google Play Store. As @rygo-msft mentioned above, it does not apply when publishing private apps. While there was an issue where APKs were blocked that has been remediated. If you are indeed publishing your apps to the public Google Play Store, that is unexpected given all wrapped apps require policy to be applied. We are working on the App Wrapper supported AABs in the future, but we do not have a timeline available. In the meantime, the following may be avenues to explore to unblock updates to your app. If your app allows non-policy managed users, you should be integrating the SDK with the Gradle Build Plugin. A wrapped app is only expected to be used in LOB scenarios where all users are managed by policy. If your app only allows policy managed users, you should be publishing and distributing the app privately, as most customers deploying LOB apps do. |
@meghandaly is this still only a Feature request. We have an intune wrapped app for the public app store for ios, its a multi tenant app just like slack, teams, webex. We want to do the same for Android, and need a .aab file. This is not private, as well need customers to be able to find it just like Apple |
Hi @meghandaly, unexpected may be true, but it seems like it definitely happens. We offer a SaaS product where each customer has their own server and they use their own Azure tenant to connect to this environment. Our app uses OIDC to establish identity. However, this method of authentication is blocked when the company uses Intune to manage their employees' devices as it is not an 'allowed' app. Our app only needs to be compatible with Intune, so it can be added as an approved app, so users can actually log-in. The wrapper tool only working for .apk's is a real blocker. |
Our app is also in similar lines as @fangornoftheforest explained above and we too need support for wrapping .aab |
Bump |
The team is aware of this requirement, but it is not scheduled at this point |
You could build an apk as well as an aab for your releases. Upload the aab to the Play Store and wrap the apk for Intune. I create multiple binaries to release in stores that have different requirements. That was going to be my approach for Intune until I found that the wrapping tool doesn't support apps that use jetpack compose. |
Describe the bug:
With the new policy of google playstore we cant upload apks anymore, we need to upload aap bundles, thats the reason because now we need the wrapping tool to let us wrap android app bundles .aap files
The text was updated successfully, but these errors were encountered: