Minimum SDK... Play Store doesn't like my .aab

In rush.yml:

android:
  minSdkVersion: 21

I should have RTFM...

The documentation says

in the rush.yml

name: ExtnName
description: Extension component for ExtnName. Created using Rush.

min_sdk: 21

version:
  number: auto
  name: '1.0'

In the component_build_infos.json

[{"assets":[],"activities":[],"permissions":[],
"type":"uk.co.metricrat.extnname.Extnname","androidMinSdk":[21]}]

:smiley:

Yes, I confused xml with yml

A post was split to a new topic: New Apps No Longer Work / Compile

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

Link: Minimum SDK... Play Store doesn't like my .aab - #41 by Anke

@Taifun Can you tell me more about the extension that you have created for Android apps - minsdk21.aix ?
-How does it work? What does it do? Is there a way for me to review the code?

Thanks in advance, I was unable to update the older thread above.

Nick

:question:

You found me very fast :slight_smile:

I don't see how to update the older thread I was looking at.

Import the extension and drag it onto the screen. That's all. It declares minSdkVersion = 21 in the Manifest.

I have tested it and have it working already - I'm looking for any additional context, including a screenshot of the code if possible or some steps on how I could review it myself (I did try already, wasn't able to).

Hmm, I'm not sure what you're getting at. If the extension works, as you seem to have verified, what's your problem?

I wanted to review the code is all - looking for any help doing that.

@Anke let me suggest to open source that little helper extension, so others are able to verify its source

Taifun

Ok, the relevant part of the extension is here:

Why is the iconname included in this extension? Could that be removed to reduce reliance on an external site?

It's the extension icon; you can also leave it out. Anyone can do it however they want.

Obrigado, funcionou para meu app.

yes, it could be stored it subdirectoery aiwebres and added locally by the extension author like this

iconName = "aiwebres/icon.png"

however

Taifun