Page updated Nov 11, 2023

Use AWS SDK

Amplify Android v1 is now in Maintenance Mode until May 31st, 2024. 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 Library for Android to get started.

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

If you need functionality in the AWS services used by the Amplify Predictions category that isn't available, we provide an escape hatch so you can get a reference to that service. For example, to get a reference to AmazonRekognitionClient:

// Obtain reference to the plugin AWSPredictionsPlugin predictionsPlugin = (AWSPredictionsPlugin) Amplify.Predictions.getPlugin("awsPredictionsPlugin"); AWSPredictionsEscapeHatch escapeHatch = predictionsPlugin.getEscapeHatch(); // Send a new request to the Rekognition endpoint directly using the client AmazonRekognitionClient client = escapeHatch.getRekognitionClient(); CreateCollectionRequest request = new CreateCollectionRequest() .withCollectionId("<new-collection-id-here>"); client.createCollection(request);
1// Obtain reference to the plugin
2AWSPredictionsPlugin predictionsPlugin = (AWSPredictionsPlugin)
3 Amplify.Predictions.getPlugin("awsPredictionsPlugin");
4AWSPredictionsEscapeHatch escapeHatch = predictionsPlugin.getEscapeHatch();
5
6// Send a new request to the Rekognition endpoint directly using the client
7AmazonRekognitionClient client = escapeHatch.getRekognitionClient();
8CreateCollectionRequest request = new CreateCollectionRequest()
9 .withCollectionId("<new-collection-id-here>");
10client.createCollection(request);

API Documentation Resources