Mark AAB support as preview
The reason is because the current implementation uses the legacy HockeyApp upload mechanism and should switch to a new upload flow as soon as it's available.
This commit is contained in:
Родитель
99e5e5c7fe
Коммит
6c522d31d6
|
@ -24,7 +24,7 @@ appcenter_upload(
|
|||
api_token: "<appcenter token>",
|
||||
owner_name: "<your appcenter account name>",
|
||||
app_name: "<your app name>",
|
||||
apk: "<path to android build binary>", # Or aab: "<path to aab file>" for app bundles
|
||||
apk: "<path to android build binary>"
|
||||
notify_testers: true # Set to false if you don't want to notify testers of your new release (default: `false`)
|
||||
)
|
||||
```
|
||||
|
@ -35,7 +35,7 @@ The action parameters `api_token` and `owner_name` can also be omitted when thei
|
|||
- `APPCENTER_OWNER_NAME` - Owner name
|
||||
- `APPCENTER_APP_NAME` - App name. If there is no app with such name, you will be prompted to create one
|
||||
- `APPCENTER_DISTRIBUTE_APK` - Build release path for android build
|
||||
- `APPCENTER_DISTRIBUTE_AAB` - Build release path for android app bundle build
|
||||
- `APPCENTER_DISTRIBUTE_AAB` - Build release path for android app bundle build (preview)
|
||||
- `APPCENTER_DISTRIBUTE_IPA` - Build release path for ios build
|
||||
- `APPCENTER_DISTRIBUTE_DSYM` - Path to your symbols (app.dSYM.zip) file
|
||||
- `APPCENTER_DISTRIBUTE_UPLOAD_DSYM_ONLY` - Flag to upload only the dSYM file to App Center
|
||||
|
|
|
@ -287,7 +287,7 @@ module Fastlane
|
|||
|
||||
FastlaneCore::ConfigItem.new(key: :aab,
|
||||
env_name: "APPCENTER_DISTRIBUTE_AAB",
|
||||
description: "Build release path for android app bundle build",
|
||||
description: "Build release path for android app bundle build (preview)",
|
||||
default_value: Actions.lane_context[SharedValues::GRADLE_AAB_OUTPUT_PATH],
|
||||
optional: true,
|
||||
type: String,
|
||||
|
|
Загрузка…
Ссылка в новой задаче