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