From 6d7699e6753d6a6ed32ec4e3680272c4380610c4 Mon Sep 17 00:00:00 2001 From: Nikhil Swaminathan <2429410+swaminator@users.noreply.github.com> Date: Wed, 15 May 2024 22:10:41 -0700 Subject: [PATCH] Removed callout This callout is not needed as we get the user to download the outputs in the previous step: https://docs.amplify.aws/android/start/quickstart/#4-set-up-local-environment without installing any tooling. --- src/pages/[platform]/start/quickstart/index.mdx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/pages/[platform]/start/quickstart/index.mdx b/src/pages/[platform]/start/quickstart/index.mdx index bc1554757ed..b9cb07eeff2 100644 --- a/src/pages/[platform]/start/quickstart/index.mdx +++ b/src/pages/[platform]/start/quickstart/index.mdx @@ -2220,15 +2220,6 @@ dependencies { Afterwards create a `MyAmplifyApp` class that extends `Application` and add the following code: - -Before calling the `Amplify.configure` function, make sure to either download the `amplify_outputs.json` file from the console, or generate it with the following command: - -```bash title="Terminal" showLineNumbers={false} -npx ampx generate outputs --app-id --branch main --out-dir app/src/main/res/raw -``` - -Next, be sure the file you generated or downloaded is in the appropriate resource directory for your application (for example, `app/src/main/res/raw`) in your Android project. Otherwise, you will not be able to compile your application. - ```kotlin title="MyAmplifyApp.kt" import android.app.Application