Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Platform setup

Amplify Flutter v1 is now in Maintenance Mode until April 30th, 2025. This means that we will continue to include updates to ensure compatibility with backend services and security. No new features will be introduced in v1.

Please use the latest version (v2) of Amplify Flutter to get started.

If you are currently using v1, follow these instructions to upgrade to v2.

iOS

From your project root, navigate to the ios/ directory and modify the Podfile using a text editor of your choice and update the target iOS platform to 11.0 or higher.

platform :ios, '11.0'

When preparing your application for deployment, you should also update your iOS Deployment Target to at least 11.0. See the Flutter docs to learn more about building your iOS app for release.

Android

From your project root, navigate to the android/app/ directory and modify build.gradle using a text editor of your choice and update the target Android SDK version to 21 or higher:

minSdkVersion 21

If you are using Flutter 2.10 or above, you will need to ensure that your app supports an up-to-date Kotlin version. This will typically be version 1.5.31 or higher.


You can do this by updating the Kotlin version in your app's android/build.gradle file:

buildscript {
ext.kotlin_version = '1.5.31'
...
}