├── aws-android-sdk-connect ├── .gitignore ├── src │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── connect │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-core-test ├── .gitignore └── src │ └── main │ ├── res │ └── values │ │ └── strings.xml │ └── AndroidManifest.xml ├── aws-android-sdk-s3-test ├── .gitignore └── src │ ├── main │ ├── res │ │ └── values │ │ │ └── strings.xml │ └── AndroidManifest.xml │ └── androidTest │ ├── assets │ ├── samplePolicy.json │ ├── errorResponse.xml │ └── fullResponse.xml │ └── java │ └── com │ └── amazonaws │ └── services │ └── s3 │ └── samplePolicy.json ├── aws-android-sdk-apigateway-test ├── .gitignore ├── src │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml └── build.gradle ├── aws-android-sdk-pinpoint-test ├── .gitignore └── src │ └── main │ ├── res │ └── values │ │ └── strings.xml │ └── AndroidManifest.xml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md └── workflows │ ├── issue_labeled.yml │ └── snapshot_release.yml ├── aws-android-sdk-chimesdkidentity ├── .gitignore ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── chimesdkidentity │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-chimesdkmessaging ├── .gitignore ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── chimesdkmessaging │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-connectparticipant ├── .gitignore ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── connectparticipant │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-cognitoidentityprovider-test ├── .gitignore └── src │ ├── main │ ├── res │ │ └── values │ │ │ └── strings.xml │ └── AndroidManifest.xml │ └── androidTest │ └── AndroidManifest.xml ├── aws-android-sdk-core ├── src │ ├── test │ │ └── resources │ │ │ ├── robolectric.properties │ │ │ ├── com │ │ │ └── amazonaws │ │ │ │ ├── util │ │ │ │ └── ClassLoaderHelperTestFile │ │ │ │ ├── sdk │ │ │ │ └── versionInfo.properties │ │ │ │ ├── handlers │ │ │ │ ├── request.handlers │ │ │ │ ├── request.handler2s │ │ │ │ └── mixed.handlers │ │ │ │ └── auth │ │ │ │ └── sessionResponseExpired.json │ │ │ └── resources │ │ │ └── profileconfig │ │ │ ├── ProfileNameWithNoBraces.tst │ │ │ ├── ProfileNameWithSpaces.tst │ │ │ ├── ProfilesWithNoProfileName.tst │ │ │ ├── ProfileNameWithNoClosingBraces.tst │ │ │ ├── ProfileNameWithNoOpeningBraces.tst │ │ │ ├── AccessKeyNotSpecified.tst │ │ │ ├── ProfilesWithSecretAccessKeyNotSpecified.tst │ │ │ ├── ProfilesContainingOtherConfigurations.tst │ │ │ ├── ProfilesWithSameProfileName.tst │ │ │ ├── ProfilesWithTwoAccessKeyUnderSameProfile.tst │ │ │ └── ProfilesWithComments.tst │ └── main │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ ├── package-info.java │ │ │ ├── services │ │ │ ├── securitytoken │ │ │ │ ├── model │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── transform │ │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ └── cognitoidentity │ │ │ │ └── model │ │ │ │ ├── package-info.java │ │ │ │ └── transform │ │ │ │ └── package-info.java │ │ │ ├── mobileconnectors │ │ │ └── package-info.java │ │ │ ├── internal │ │ │ ├── keyvaluestore │ │ │ │ └── KeyNotGeneratedException.java │ │ │ └── CustomBackoffStrategy.java │ │ │ └── http │ │ │ └── conn │ │ │ └── Wrapped.java │ │ ├── resources │ │ └── fabric │ │ │ └── com.amazonaws.aws-android-sdk-core.properties │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-iot ├── src │ ├── test │ │ ├── resources │ │ │ └── robolectric.properties │ │ └── java │ │ │ ├── com │ │ │ └── amazonaws │ │ │ │ └── mobileconnectors │ │ │ │ └── iot │ │ │ │ └── MockDeliveryToken.java │ │ │ └── android │ │ │ └── util │ │ │ └── Log.java │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ ├── services │ │ │ ├── iot │ │ │ │ └── model │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── transform │ │ │ │ │ └── package-info.java │ │ │ └── iotdata │ │ │ │ └── model │ │ │ │ ├── package-info.java │ │ │ │ └── transform │ │ │ │ └── package-info.java │ │ │ └── mobileconnectors │ │ │ └── iot │ │ │ ├── package-info.java │ │ │ ├── MqttManagerConnectionState.java │ │ │ └── AWSIotMqttQos.java │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-s3 ├── src │ ├── test │ │ ├── resources │ │ │ ├── robolectric.properties │ │ │ ├── resources │ │ │ │ ├── marshalling │ │ │ │ │ ├── RestoreObjectWithTier.xml │ │ │ │ │ └── MetricsConfiguration.xml │ │ │ │ ├── errorResponse │ │ │ │ │ ├── ErrorResponseBasicTags.xml │ │ │ │ │ ├── ErrorResponseRootElementAsFoo.xml │ │ │ │ │ ├── ErrorResponseChildTagError.xml │ │ │ │ │ ├── ErrorResponseRepeatedXml.xml │ │ │ │ │ ├── ErrorResponseNoErrorTag.xml │ │ │ │ │ ├── ErrorResponseChildTags.xml │ │ │ │ │ ├── ErrorResponseWithAdditionalDetails.xml │ │ │ │ │ └── ErrorResponseXMLNotProperFormat.xml │ │ │ │ └── unmarshalling │ │ │ │ │ └── MetricsConfiguration.xml │ │ │ ├── com │ │ │ │ └── amazonaws │ │ │ │ │ └── services │ │ │ │ │ └── s3 │ │ │ │ │ ├── samplePolicy.json │ │ │ │ │ ├── multiObjectDelete │ │ │ │ │ └── testResponses │ │ │ │ │ │ ├── errorResponse.xml │ │ │ │ │ │ └── fullResponse.xml │ │ │ │ │ └── model │ │ │ │ │ └── transform │ │ │ │ │ ├── GetObjectTagsResponse.xml │ │ │ │ │ ├── QueueConfiguration.xml │ │ │ │ │ ├── TopicConfiguration.xml │ │ │ │ │ ├── LambdaConfiguration.xml │ │ │ │ │ └── CloudFunctionConfiguration.xml │ │ │ └── log4j.properties │ │ └── java │ │ │ ├── resources │ │ │ ├── marshalling │ │ │ │ ├── RestoreObjectWithTier.xml │ │ │ │ └── MetricsConfiguration.xml │ │ │ ├── errorResponse │ │ │ │ ├── ErrorResponseBasicTags.xml │ │ │ │ ├── ErrorResponseRootElementAsFoo.xml │ │ │ │ ├── ErrorResponseChildTagError.xml │ │ │ │ ├── ErrorResponseRepeatedXml.xml │ │ │ │ ├── ErrorResponseNoErrorTag.xml │ │ │ │ ├── ErrorResponseChildTags.xml │ │ │ │ ├── ErrorResponseWithAdditionalDetails.xml │ │ │ │ └── ErrorResponseXMLNotProperFormat.xml │ │ │ └── unmarshalling │ │ │ │ └── MetricsConfiguration.xml │ │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── s3 │ │ │ ├── multiObjectDelete │ │ │ └── testResponses │ │ │ │ ├── errorResponse.xml │ │ │ │ └── fullResponse.xml │ │ │ └── model │ │ │ └── transform │ │ │ ├── GetObjectTagsResponse.xml │ │ │ ├── QueueConfiguration.xml │ │ │ ├── TopicConfiguration.xml │ │ │ ├── LambdaConfiguration.xml │ │ │ └── CloudFunctionConfiguration.xml │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── s3 │ │ └── model │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-sdb ├── src │ ├── test │ │ └── resources │ │ │ ├── robolectric.properties │ │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── simpledb │ │ │ ├── CreateDomainResponse.xml │ │ │ ├── DeleteDomainResponse.xml │ │ │ ├── PutAttributesResponse.xml │ │ │ ├── DeleteAttributesResponse.xml │ │ │ ├── BatchPutAttributesResponse.xml │ │ │ ├── ListDomainsResponse.xml │ │ │ ├── GetAttributesResponse.xml │ │ │ └── DomainMetadataResponse.xml │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── simpledb │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-kinesis ├── src │ ├── test │ │ └── resources │ │ │ └── robolectric.properties │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ ├── kinesis │ │ ├── model │ │ │ ├── package-info.java │ │ │ └── transform │ │ │ │ └── package-info.java │ │ └── package-info.java │ │ └── kinesisfirehose │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-lambda ├── src │ ├── test │ │ └── resources │ │ │ ├── robolectric.properties │ │ │ └── com │ │ │ └── amazonaws │ │ │ └── mobileconnectors │ │ │ └── util │ │ │ └── AndroidManifest.xml │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── lambda │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-pinpoint ├── src │ ├── test │ │ └── resources │ │ │ └── robolectric.properties │ └── main │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ ├── services │ │ │ ├── pinpoint │ │ │ │ ├── package-info.java │ │ │ │ └── model │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── transform │ │ │ │ │ └── package-info.java │ │ │ └── pinpointanalytics │ │ │ │ ├── model │ │ │ │ ├── package-info.java │ │ │ │ └── transform │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ └── mobileconnectors │ │ │ └── pinpoint │ │ │ ├── analytics │ │ │ ├── monetization │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── targeting │ │ │ └── notification │ │ │ │ └── AppLevelOptOutProvider.java │ │ │ └── internal │ │ │ └── core │ │ │ └── util │ │ │ └── Nullable.java │ │ ├── AndroidManifest.xml │ │ └── res │ │ └── values │ │ └── styles.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-iot-test ├── .idea │ └── .gitignore ├── src │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml └── build.gradle ├── LICENSE.APACHE.txt ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── aws-android-sdk-testutils ├── src │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml └── build.gradle ├── aws-android-sdk-ec2 ├── src │ └── main │ │ ├── resources │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── ec2 │ │ │ ├── request.handlers │ │ │ └── request.handler2s │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── ec2 │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-mobile-client ├── src │ ├── main │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── amazonaws │ │ │ │ └── mobile │ │ │ │ └── client │ │ │ │ ├── internal │ │ │ │ └── oauth2 │ │ │ │ │ ├── AuthorizeResponse.java │ │ │ │ │ └── OAuth2Exception.java │ │ │ │ └── results │ │ │ │ └── ListDevicesResult.java │ │ └── AndroidManifest.xml │ └── androidTest │ │ ├── res │ │ ├── values │ │ │ ├── strings.xml │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ └── raw │ │ │ └── fakeawsconfiguration.json │ │ └── AndroidManifest.xml └── gradle.properties ├── aws-android-sdk-kinesisvideo ├── src │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ ├── services │ │ │ └── kinesisvideo │ │ │ │ ├── package-info.java │ │ │ │ └── model │ │ │ │ ├── package-info.java │ │ │ │ └── transform │ │ │ │ └── package-info.java │ │ │ └── kinesisvideo │ │ │ ├── internal │ │ │ ├── client │ │ │ │ └── mediasource │ │ │ │ │ └── MediaSourceConfiguration.java │ │ │ └── mediasource │ │ │ │ └── OnStreamDataAvailable.java │ │ │ ├── stream │ │ │ └── throttling │ │ │ │ └── Throttler.java │ │ │ └── common │ │ │ └── function │ │ │ └── Consumer.java │ │ ├── jniLibs │ │ ├── x86 │ │ │ └── libKinesisVideoProducerJNI.so │ │ ├── x86_64 │ │ │ └── libKinesisVideoProducerJNI.so │ │ ├── arm64-v8a │ │ │ └── libKinesisVideoProducerJNI.so │ │ └── armeabi-v7a │ │ │ └── libKinesisVideoProducerJNI.so │ │ └── AndroidManifest.xml └── gradle.properties ├── aws-android-sdk-auth-google ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ ├── drawable-hdpi │ │ │ └── google_icon.png │ │ ├── drawable-ldpi │ │ │ └── google_icon.png │ │ ├── drawable-mdpi │ │ │ └── google_icon.png │ │ ├── drawable-tvdpi │ │ │ └── google_icon.png │ │ ├── drawable-xhdpi │ │ │ └── google_icon.png │ │ ├── drawable-xxhdpi │ │ │ └── google_icon.png │ │ └── drawable-xxxhdpi │ │ │ └── google_icon.png │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-lex ├── src │ └── main │ │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── mic.png │ │ │ └── lex_speak.png │ │ ├── drawable-mdpi │ │ │ ├── mic.png │ │ │ └── lex_speak.png │ │ ├── drawable-xhdpi │ │ │ ├── mic.png │ │ │ └── lex_speak.png │ │ ├── drawable-xxhdpi │ │ │ ├── mic.png │ │ │ └── lex_speak.png │ │ └── layout │ │ │ └── voice_component.xml │ │ ├── jniLibs │ │ ├── mips │ │ │ ├── libblueshift-opus.so │ │ │ └── libblueshift-audioprocessing.so │ │ ├── x86 │ │ │ ├── libblueshift-opus.so │ │ │ └── libblueshift-audioprocessing.so │ │ ├── armeabi │ │ │ ├── libblueshift-opus.so │ │ │ └── libblueshift-audioprocessing.so │ │ ├── mips64 │ │ │ ├── libblueshift-opus.so │ │ │ └── libblueshift-audioprocessing.so │ │ ├── x86_64 │ │ │ ├── libblueshift-opus.so │ │ │ └── libblueshift-audioprocessing.so │ │ ├── arm64-v8a │ │ │ ├── libblueshift-opus.so │ │ │ └── libblueshift-audioprocessing.so │ │ ├── armeabi-v7a │ │ │ ├── libblueshift-opus.so │ │ │ └── libblueshift-audioprocessing.so │ │ └── LICENSE.txt │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ ├── services │ │ │ └── lexrts │ │ │ │ └── model │ │ │ │ ├── package-info.java │ │ │ │ └── transform │ │ │ │ └── package-info.java │ │ │ └── mobileconnectors │ │ │ └── lex │ │ │ └── interactionkit │ │ │ ├── exceptions │ │ │ └── package-info.java │ │ │ ├── config │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-auth-facebook ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ ├── drawable-hdpi │ │ │ └── facebook_icon.png │ │ ├── drawable-ldpi │ │ │ └── facebook_icon.png │ │ ├── drawable-mdpi │ │ │ └── facebook_icon.png │ │ ├── drawable-tvdpi │ │ │ └── facebook_icon.png │ │ ├── drawable-xhdpi │ │ │ └── facebook_icon.png │ │ ├── drawable-xxhdpi │ │ │ └── facebook_icon.png │ │ └── drawable-xxxhdpi │ │ │ └── facebook_icon.png │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-auth-core ├── src │ └── main │ │ ├── res │ │ └── values │ │ │ ├── strings.xml │ │ │ └── attrs.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── mobile │ │ └── auth │ │ └── core │ │ └── internal │ │ └── util │ │ └── package-info.java ├── build.gradle └── gradle.properties ├── aws-android-sdk-machinelearning ├── src │ └── main │ │ ├── resources │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── machinelearning │ │ │ └── request.handler2s │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── machinelearning │ │ ├── package-info.java │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-auth-userpools ├── src │ └── main │ │ └── res │ │ └── values │ │ ├── ids.xml │ │ ├── dimens.xml │ │ └── attrs.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-auth-ui ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ │ ├── drawable-hdpi │ │ │ └── default_sign_in_logo.png │ │ ├── drawable-ldpi │ │ │ └── default_sign_in_logo.png │ │ ├── drawable-mdpi │ │ │ └── default_sign_in_logo.png │ │ ├── drawable-tvdpi │ │ │ └── default_sign_in_logo.png │ │ ├── drawable-xhdpi │ │ │ └── default_sign_in_logo.png │ │ ├── drawable-xxhdpi │ │ │ └── default_sign_in_logo.png │ │ ├── drawable-xxxhdpi │ │ │ └── default_sign_in_logo.png │ │ └── layout │ │ │ └── activity_sign_in.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── mobile │ │ └── auth │ │ └── ui │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-kinesisvideo-archivedmedia ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── kinesisvideoarchivedmedia │ │ │ ├── package-info.java │ │ │ └── model │ │ │ ├── package-info.java │ │ │ └── transform │ │ │ └── package-info.java │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-kms ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── kms │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-polly ├── src │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── polly │ │ │ ├── model │ │ │ ├── package-info.java │ │ │ └── transform │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ └── test │ │ └── resources │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── polly │ │ ├── four-to-eight.pls │ │ └── one-to-two.pls ├── gradle.properties └── build.gradle ├── aws-android-sdk-sns ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── sns │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-sqs ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── sqs │ │ │ └── model │ │ │ ├── package-info.java │ │ │ └── transform │ │ │ └── package-info.java │ │ └── resources │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── sqs │ │ └── request.handlers ├── gradle.properties └── build.gradle ├── aws-android-sdk-kinesisvideo-webrtcstorage ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── kinesisvideowebrtcstorage │ │ │ ├── package-info.java │ │ │ └── model │ │ │ ├── package-info.java │ │ │ └── transform │ │ │ └── package-info.java │ │ └── AndroidManifest.xml ├── build.gradle └── gradle.properties ├── aws-android-sdk-logs ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── logs │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-ses ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── resources │ │ └── META-INF │ │ │ └── javamail.providers │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── simpleemail │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-textract ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── textract │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-ddb ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── dynamodbv2 │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-location ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ ├── services │ │ │ └── geo │ │ │ │ ├── model │ │ │ │ ├── package-info.java │ │ │ │ └── transform │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ └── mobileconnectors │ │ │ └── geo │ │ │ └── tracker │ │ │ └── EmptyTrackingListener.java │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-cloudwatch ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── cloudwatch │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-comprehend ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── comprehend │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-sagemaker-runtime ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── sagemakerruntime │ │ │ ├── package-info.java │ │ │ └── model │ │ │ ├── package-info.java │ │ │ └── transform │ │ │ └── package-info.java │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-transcribe ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── transcribe │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-translate ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── translate │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-rekognition ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── rekognition │ │ └── model │ │ ├── package-info.java │ │ └── transform │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-cognitoidentityprovider-asf ├── src │ └── main │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── LICENSE.txt ├── aws-android-sdk-apigateway-core ├── src │ └── main │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-ddb-document ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── mobileconnectors │ │ └── dynamodbv2 │ │ └── document │ │ └── internal │ │ ├── Key.java │ │ └── KeyDescription.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-kinesisvideo-signaling ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── amazonaws │ │ └── services │ │ └── kinesisvideosignaling │ │ ├── model │ │ ├── package-info.java │ │ └── transform │ │ │ └── package-info.java │ │ └── package-info.java ├── gradle.properties └── build.gradle ├── aws-android-sdk-cognitoidentityprovider ├── src │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── amazonaws │ │ │ └── services │ │ │ └── cognitoidentityprovider │ │ │ └── model │ │ │ ├── package-info.java │ │ │ └── transform │ │ │ └── package-info.java │ └── test │ │ └── AndroidManifest.xml ├── gradle.properties └── build.gradle ├── aws-android-sdk-ddb-mapper ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── amazonaws │ │ │ └── mobileconnectors │ │ │ └── dynamodbv2 │ │ │ └── dynamodbmapper │ │ │ ├── marshallers │ │ │ └── package-info.java │ │ │ └── unmarshallers │ │ │ └── package-info.java │ │ └── resources │ │ └── com │ │ └── amazonaws │ │ └── mobileconnectors │ │ └── dynamodbv2 │ │ └── dynamodbmapper │ │ └── package.html ├── gradle.properties └── build.gradle └── aws-android-sdk-cognitoauth ├── LICENSE.txt ├── gradle.properties ├── src └── main │ └── AndroidManifest.xml └── build.gradle /aws-android-sdk-connect/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /aws-android-sdk-core-test/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /aws-android-sdk-s3-test/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /aws-android-sdk-apigateway-test/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint-test/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @aws-amplify/amplify-android 2 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkidentity/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkmessaging/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /aws-android-sdk-connectparticipant/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider-test/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | sdk=27 2 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | sdk=27 2 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | sdk=27 2 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | sdk=27 2 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | sdk=27 2 | -------------------------------------------------------------------------------- /aws-android-sdk-lambda/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | sdk=27 2 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- 1 | sdk=27 2 | -------------------------------------------------------------------------------- /aws-android-sdk-iot-test/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/com/amazonaws/util/ClassLoaderHelperTestFile: -------------------------------------------------------------------------------- 1 | TestFile -------------------------------------------------------------------------------- /LICENSE.APACHE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/LICENSE.APACHE.txt -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/com/amazonaws/sdk/versionInfo.properties: -------------------------------------------------------------------------------- 1 | version = 1.2.3 2 | platform = java -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/com/amazonaws/handlers/request.handlers: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.amazonaws.handlers.MockRequestHandler1 -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /aws-android-sdk-connect/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | connect 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/com/amazonaws/handlers/request.handler2s: -------------------------------------------------------------------------------- 1 | com.amazonaws.handlers.MockRequestHandler2 2 | 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-testutils/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TestUtils 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-ec2/src/main/resources/com/amazonaws/services/ec2/request.handlers: -------------------------------------------------------------------------------- 1 | com.amazonaws.services.ec2.model.transform.EC2RequestHandler 2 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | mobile_client 3 | -------------------------------------------------------------------------------- /aws-android-sdk-s3-test/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | aws-android-sdk-s3-test 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-ec2/src/main/resources/com/amazonaws/services/ec2/request.handler2s: -------------------------------------------------------------------------------- 1 | com.amazonaws.services.ec2.model.transform.GeneratePreSignUrlRequestHandler 2 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AWS SDK for Android 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/com/amazonaws/handlers/mixed.handlers: -------------------------------------------------------------------------------- 1 | com.amazonaws.handlers.MockRequestHandler2 2 | com.amazonaws.handlers.MockRequestHandler1 -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | aws-android-sdk-kinesisvideo-test 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint-test/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | aws-android-sdk-pinpoint-test 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Sign in with Google 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/drawable-hdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/res/drawable-hdpi/mic.png -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/drawable-mdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/res/drawable-mdpi/mic.png -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/drawable-xhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/res/drawable-xhdpi/mic.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Continue with Facebook 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-connect/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /aws-android-sdk-core-test/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AWS Android SDK - Core - Integration Tests 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/drawable-xxhdpi/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/res/drawable-xxhdpi/mic.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-core/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Sign-in with %1$s failed.\n%2$s 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/java/com/amazonaws/services/kinesisvideo/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideo; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/drawable-hdpi/lex_speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/res/drawable-hdpi/lex_speak.png -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/drawable-mdpi/lex_speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/res/drawable-mdpi/lex_speak.png -------------------------------------------------------------------------------- /aws-android-sdk-machinelearning/src/main/resources/com/amazonaws/services/machinelearning/request.handler2s: -------------------------------------------------------------------------------- 1 | com.amazonaws.services.machinelearning.internal.PredictEndpointHandler 2 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/services/pinpoint/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Amazon Pinpoint 3 | */ 4 | 5 | package com.amazonaws.services.pinpoint; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-userpools/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | A dummy string. 4 | 5 | 6 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/mips/libblueshift-opus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/mips/libblueshift-opus.so -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/x86/libblueshift-opus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/x86/libblueshift-opus.so -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/drawable-xhdpi/lex_speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/res/drawable-xhdpi/lex_speak.png -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/drawable-xxhdpi/lex_speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/res/drawable-xxhdpi/lex_speak.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #DDDDDD 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/armeabi/libblueshift-opus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/armeabi/libblueshift-opus.so -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/mips64/libblueshift-opus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/mips64/libblueshift-opus.so -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/x86_64/libblueshift-opus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/x86_64/libblueshift-opus.so -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkidentity/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkmessaging/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider-test/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AWS SDK for Android - Cognito User Pools Test 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/arm64-v8a/libblueshift-opus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/arm64-v8a/libblueshift-opus.so -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/res/drawable-hdpi/google_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-google/src/main/res/drawable-hdpi/google_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/res/drawable-ldpi/google_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-google/src/main/res/drawable-ldpi/google_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/res/drawable-mdpi/google_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-google/src/main/res/drawable-mdpi/google_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-iot-test/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | aws-android-sdk-iot 3 | iot 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-lex 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Lex 3 | POM_NAME=AWS SDK for Android - Amazon Lex 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/armeabi-v7a/libblueshift-opus.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/armeabi-v7a/libblueshift-opus.so -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/res/drawable-tvdpi/google_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-google/src/main/res/drawable-tvdpi/google_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/res/drawable-xhdpi/google_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-google/src/main/res/drawable-xhdpi/google_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/res/drawable-xxhdpi/google_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-google/src/main/res/drawable-xxhdpi/google_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The amazonaws package includes classes commonly used to support the AWS SDK for Android. 3 | */ 4 | package com.amazonaws; 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/resources/fabric/com.amazonaws.aws-android-sdk-core.properties: -------------------------------------------------------------------------------- 1 | fabric-identifier=com.amazonaws.aws-android-sdk-core 2 | fabric-version=2.22.6 3 | fabric-build-type=binary 4 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/x86/libblueshift-audioprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/x86/libblueshift-audioprocessing.so -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/res/drawable-hdpi/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-facebook/src/main/res/drawable-hdpi/facebook_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/res/drawable-ldpi/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-facebook/src/main/res/drawable-ldpi/facebook_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/res/drawable-mdpi/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-facebook/src/main/res/drawable-mdpi/facebook_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/res/drawable-tvdpi/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-facebook/src/main/res/drawable-tvdpi/facebook_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/res/drawable-xhdpi/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-facebook/src/main/res/drawable-xhdpi/facebook_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/res/drawable-xxxhdpi/google_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-google/src/main/res/drawable-xxxhdpi/google_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/drawable-hdpi/default_sign_in_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-ui/src/main/res/drawable-hdpi/default_sign_in_logo.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/drawable-ldpi/default_sign_in_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-ui/src/main/res/drawable-ldpi/default_sign_in_logo.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/drawable-mdpi/default_sign_in_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-ui/src/main/res/drawable-mdpi/default_sign_in_logo.png -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/mips/libblueshift-audioprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/mips/libblueshift-audioprocessing.so -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/mips64/libblueshift-audioprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/mips64/libblueshift-audioprocessing.so -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/x86_64/libblueshift-audioprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/x86_64/libblueshift-audioprocessing.so -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/res/drawable-xxhdpi/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-facebook/src/main/res/drawable-xxhdpi/facebook_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/res/drawable-xxxhdpi/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-facebook/src/main/res/drawable-xxxhdpi/facebook_icon.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/drawable-tvdpi/default_sign_in_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-ui/src/main/res/drawable-tvdpi/default_sign_in_logo.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/drawable-xhdpi/default_sign_in_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-ui/src/main/res/drawable-xhdpi/default_sign_in_logo.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/drawable-xxhdpi/default_sign_in_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-ui/src/main/res/drawable-xxhdpi/default_sign_in_logo.png -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/armeabi/libblueshift-audioprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/armeabi/libblueshift-audioprocessing.so -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/drawable-xxxhdpi/default_sign_in_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-auth-ui/src/main/res/drawable-xxxhdpi/default_sign_in_logo.png -------------------------------------------------------------------------------- /aws-android-sdk-ec2/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/java/com/amazonaws/services/iot/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSIot 3 | */ 4 | 5 | package com.amazonaws.services.iot.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-archivedmedia/src/main/java/com/amazonaws/services/kinesisvideoarchivedmedia/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideoarchivedmedia; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/jniLibs/x86/libKinesisVideoProducerJNI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-kinesisvideo/src/main/jniLibs/x86/libKinesisVideoProducerJNI.so -------------------------------------------------------------------------------- /aws-android-sdk-kms/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-kms/src/main/java/com/amazonaws/services/kms/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSKMS 3 | */ 4 | 5 | package com.amazonaws.services.kms.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/arm64-v8a/libblueshift-audioprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/arm64-v8a/libblueshift-audioprocessing.so -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/armeabi-v7a/libblueshift-audioprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-lex/src/main/jniLibs/armeabi-v7a/libblueshift-audioprocessing.so -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /aws-android-sdk-polly/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-sns/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-sns/src/main/java/com/amazonaws/services/sns/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonSNS 3 | */ 4 | 5 | package com.amazonaws.services.sns.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-sqs/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-sqs/src/main/java/com/amazonaws/services/sqs/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonSQS 3 | */ 4 | 5 | package com.amazonaws.services.sqs.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-apigateway-test/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | aws-android-sdk-apigateway-test 3 | apigateway 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-ec2/src/main/java/com/amazonaws/services/ec2/model/package-info.java: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Classes modeling the various types represented by AmazonEC2. 4 | */ 5 | package com.amazonaws.services.ec2.model; 6 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-webrtcstorage/src/main/java/com/amazonaws/services/kinesisvideowebrtcstorage/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideowebrtcstorage; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/jniLibs/x86_64/libKinesisVideoProducerJNI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-kinesisvideo/src/main/jniLibs/x86_64/libKinesisVideoProducerJNI.so -------------------------------------------------------------------------------- /aws-android-sdk-logs/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-ses/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-ses/src/main/resources/META-INF/javamail.providers: -------------------------------------------------------------------------------- 1 | # AWS Mail Provider 2 | protocol=aws; type=transport; class=com.amazonaws.services.simpleemail.AWSJavaMailTransport; vendor=Amazon Web Services LLC; 3 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-textract/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/java/com/amazonaws/services/iotdata/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSIotData 3 | */ 4 | 5 | package com.amazonaws.services.iotdata.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/jniLibs/arm64-v8a/libKinesisVideoProducerJNI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-kinesisvideo/src/main/jniLibs/arm64-v8a/libKinesisVideoProducerJNI.so -------------------------------------------------------------------------------- /aws-android-sdk-lambda/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-lambda/src/main/java/com/amazonaws/services/lambda/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSLambda 3 | */ 4 | 5 | package com.amazonaws.services.lambda.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-location/src/main/java/com/amazonaws/services/geo/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonLocation 3 | */ 4 | 5 | package com.amazonaws.services.geo.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /aws-android-sdk-polly/src/main/java/com/amazonaws/services/polly/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonPolly 3 | */ 4 | 5 | package com.amazonaws.services.polly.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-cloudwatch/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-comprehend/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/java/com/amazonaws/services/iot/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSIot 3 | */ 4 | 5 | package com.amazonaws.services.iot.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/jniLibs/armeabi-v7a/libKinesisVideoProducerJNI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-kinesisvideo/src/main/jniLibs/armeabi-v7a/libKinesisVideoProducerJNI.so -------------------------------------------------------------------------------- /aws-android-sdk-kms/src/main/java/com/amazonaws/services/kms/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSKMS 3 | */ 4 | 5 | package com.amazonaws.services.kms.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/java/com/amazonaws/services/lexrts/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonLexRuntime 3 | */ 4 | 5 | package com.amazonaws.services.lexrts.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-logs/src/main/java/com/amazonaws/services/logs/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonCloudWatchLogs 3 | */ 4 | 5 | package com.amazonaws.services.logs.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-android/HEAD/aws-android-sdk-mobile-client/src/androidTest/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/marshalling/RestoreObjectWithTier.xml: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | Bulk 5 | 6 | -------------------------------------------------------------------------------- /aws-android-sdk-sagemaker-runtime/src/main/java/com/amazonaws/services/sagemakerruntime/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

The Amazon SageMaker runtime API.

3 | */ 4 | 5 | package com.amazonaws.services.sagemakerruntime; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-transcribe/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-translate/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /aws-android-sdk-connect/src/main/java/com/amazonaws/services/connect/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonConnect 3 | */ 4 | 5 | package com.amazonaws.services.connect.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb/src/main/java/com/amazonaws/services/dynamodbv2/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonDynamoDB 3 | */ 4 | 5 | package com.amazonaws.services.dynamodbv2.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/src/main/java/com/amazonaws/services/kinesis/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonKinesis 3 | */ 4 | 5 | package com.amazonaws.services.kinesis.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/services/pinpoint/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonPinpoint 3 | */ 4 | 5 | package com.amazonaws.services.pinpoint.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-rekognition/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/marshalling/RestoreObjectWithTier.xml: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | Bulk 5 | 6 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/main/java/com/amazonaws/services/simpledb/model/package-info.java: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Classes modeling the various types represented by AmazonSimpleDB. 4 | */ 5 | package com.amazonaws.services.simpledb.model; 6 | -------------------------------------------------------------------------------- /aws-android-sdk-sns/src/main/java/com/amazonaws/services/sns/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonSNS 3 | */ 4 | 5 | package com.amazonaws.services.sns.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-sqs/src/main/java/com/amazonaws/services/sqs/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonSQS 3 | */ 4 | 5 | package com.amazonaws.services.sqs.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-sqs/src/main/resources/com/amazonaws/services/sqs/request.handlers: -------------------------------------------------------------------------------- 1 | com.amazonaws.services.sqs.QueueUrlHandler 2 | com.amazonaws.services.sqs.internal.SQSRequestHandler 3 | com.amazonaws.services.sqs.MessageMD5ChecksumHandler -------------------------------------------------------------------------------- /aws-android-sdk-textract/src/main/java/com/amazonaws/services/textract/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonTextract 3 | */ 4 | 5 | package com.amazonaws.services.textract.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider-asf/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-ec2/src/main/java/com/amazonaws/services/ec2/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Marhsalling for the various types represented by AmazonEC2. 4 | */ 5 | package com.amazonaws.services.ec2.model.transform; 6 | -------------------------------------------------------------------------------- /aws-android-sdk-machinelearning/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-translate/src/main/java/com/amazonaws/services/translate/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonTranslate 3 | */ 4 | 5 | package com.amazonaws.services.translate.model; 6 | 7 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The AWS SDK for Android is generally licensed under the Apache 2.0 License, with the Amazon Lex subcomponent under the path aws-android-sdk-deepsense/src/main/jni/ under the AWS Customer Agreement (https://aws.amazon.com/agreement/ ). 2 | -------------------------------------------------------------------------------- /aws-android-sdk-apigateway-core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-cloudwatch/src/main/java/com/amazonaws/services/cloudwatch/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonCloudWatch 3 | */ 4 | 5 | package com.amazonaws.services.cloudwatch.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-comprehend/src/main/java/com/amazonaws/services/comprehend/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonComprehend 3 | */ 4 | 5 | package com.amazonaws.services.comprehend.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-connectparticipant/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfileNameWithNoBraces.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | test 5 | aws_access_key_id=testProfile 6 | aws_secret_access_key=testProfile -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfileNameWithSpaces.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | [ ] 5 | aws_access_key_id=testProfile 6 | aws_secret_access_key=testProfile -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfilesWithNoProfileName.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | [] 5 | aws_access_key_id=testProfile 6 | aws_secret_access_key=testProfile -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/java/com/amazonaws/services/iotdata/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSIotData 3 | */ 4 | 5 | package com.amazonaws.services.iotdata.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-lambda/src/main/java/com/amazonaws/services/lambda/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSLambda 3 | */ 4 | 5 | package com.amazonaws.services.lambda.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-location/src/main/java/com/amazonaws/services/geo/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonLocation 3 | */ 4 | 5 | package com.amazonaws.services.geo.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-location/src/main/java/com/amazonaws/services/geo/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

"Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing"

3 | */ 4 | 5 | package com.amazonaws.services.geo; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-machinelearning/src/main/java/com/amazonaws/services/machinelearning/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Definition of the public APIs exposed by Amazon Machine Learning 3 | */ 4 | 5 | package com.amazonaws.services.machinelearning; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-polly/src/main/java/com/amazonaws/services/polly/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonPolly 3 | */ 4 | 5 | package com.amazonaws.services.polly.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-sagemaker-runtime/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-transcribe/src/main/java/com/amazonaws/services/transcribe/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonTranscribe 3 | */ 4 | 5 | package com.amazonaws.services.transcribe.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-connect/src/main/java/com/amazonaws/services/connect/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonConnect 3 | */ 4 | 5 | package com.amazonaws.services.connect.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/services/securitytoken/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSSecurityTokenService 3 | */ 4 | 5 | package com.amazonaws.services.securitytoken.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-document/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/src/main/java/com/amazonaws/services/kinesis/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonKinesis 3 | */ 4 | 5 | package com.amazonaws.services.kinesis.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-signaling/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-webrtcstorage/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/java/com/amazonaws/services/kinesisvideo/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSKinesisVideo 3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideo.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/java/com/amazonaws/services/lexrts/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonLexRuntime 3 | */ 4 | 5 | package com.amazonaws.services.lexrts.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-logs/src/main/java/com/amazonaws/services/logs/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonCloudWatchLogs 3 | */ 4 | 5 | package com.amazonaws.services.logs.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-rekognition/src/main/java/com/amazonaws/services/rekognition/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonRekognition 3 | */ 4 | 5 | package com.amazonaws.services.rekognition.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-ses/src/main/java/com/amazonaws/services/simpleemail/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonSimpleEmailService 3 | */ 4 | 5 | package com.amazonaws.services.simpleemail.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/services/cognitoidentity/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonCognitoIdentity 3 | */ 4 | 5 | package com.amazonaws.services.cognitoidentity.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfileNameWithNoClosingBraces.tst: -------------------------------------------------------------------------------- 1 | [default 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | [ ] 5 | aws_access_key_id=testProfile 6 | aws_secret_access_key=testProfile -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfileNameWithNoOpeningBraces.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | test] 5 | aws_access_key_id=testProfile 6 | aws_secret_access_key=testProfile -------------------------------------------------------------------------------- /aws-android-sdk-ddb-mapper/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb/src/main/java/com/amazonaws/services/dynamodbv2/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonDynamoDB 3 | */ 4 | 5 | package com.amazonaws.services.dynamodbv2.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/src/main/java/com/amazonaws/services/kinesisfirehose/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonKinesisFirehose 3 | */ 4 | 5 | package com.amazonaws.services.kinesisfirehose.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/services/pinpoint/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonPinpoint 3 | */ 4 | 5 | package com.amazonaws.services.pinpoint.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/main/java/com/amazonaws/services/simpledb/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Marhsalling for the various types represented by AmazonSimpleDB. 4 | */ 5 | package com.amazonaws.services.simpledb.model.transform; 6 | -------------------------------------------------------------------------------- /aws-android-sdk-textract/src/main/java/com/amazonaws/services/textract/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonTextract 3 | */ 4 | 5 | package com.amazonaws.services.textract.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-apigateway-test/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core-test/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/errorResponse/ErrorResponseBasicTags.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | -------------------------------------------------------------------------------- /aws-android-sdk-translate/src/main/java/com/amazonaws/services/translate/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonTranslate 3 | */ 4 | 5 | package com.amazonaws.services.translate.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-translate/src/main/java/com/amazonaws/services/translate/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

Provides translation of the input content from the source language to the target language.

3 | */ 4 | 5 | package com.amazonaws.services.translate; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-cloudwatch/src/main/java/com/amazonaws/services/cloudwatch/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonCloudWatch 3 | */ 4 | 5 | package com.amazonaws.services.cloudwatch.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-comprehend/src/main/java/com/amazonaws/services/comprehend/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonComprehend 3 | */ 4 | 5 | package com.amazonaws.services.comprehend.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-iot-test/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-archivedmedia/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | aws-android-sdk-kinesisvideo-archivedmedia-test 3 | kinesis-video-archivedmedia 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-machinelearning/src/main/java/com/amazonaws/services/machinelearning/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonMachineLearning 3 | */ 4 | 5 | package com.amazonaws.services.machinelearning.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/services/pinpointanalytics/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonPinpointAnalytics 3 | */ 4 | 5 | package com.amazonaws.services.pinpointanalytics.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-rekognition/src/main/java/com/amazonaws/services/rekognition/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonRekognition 3 | */ 4 | 5 | package com.amazonaws.services.rekognition.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/errorResponse/ErrorResponseBasicTags.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | -------------------------------------------------------------------------------- /aws-android-sdk-ses/src/main/java/com/amazonaws/services/simpleemail/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonSimpleEmailService 3 | */ 4 | 5 | package com.amazonaws.services.simpleemail.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-transcribe/src/main/java/com/amazonaws/services/transcribe/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonTranscribe 3 | */ 4 | 5 | package com.amazonaws.services.transcribe.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkidentity/src/main/java/com/amazonaws/services/chimesdkidentity/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonChimeSDKIdentity 3 | */ 4 | 5 | package com.amazonaws.services.chimesdkidentity.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoauth/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The Amazon Cognito Auth aws-android-sdk-cognitoauth is generally licensed under the Apache 2.0 License, with the code provided in the Java package "com.amazonaws.cognito" subcomponent being licensed under the Amazon Software License. 2 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoauth/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-cognitoauth 2 | POM_DESCRIPTION=The AWS Android SDK with app integration for Amazon Cognito Your User Pools Service 3 | POM_NAME=AWS SDK for Android - Amazon Cognito Auth 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/services/cognitoidentity/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonCognitoIdentity 3 | */ 4 | 5 | package com.amazonaws.services.cognitoidentity.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/services/securitytoken/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSSecurityTokenService 3 | */ 4 | 5 | package com.amazonaws.services.securitytoken.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/java/com/amazonaws/services/kinesisvideo/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSKinesisVideo 3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideo.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-sagemaker-runtime/src/main/java/com/amazonaws/services/sagemakerruntime/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonSageMakerRuntime 3 | */ 4 | 5 | package com.amazonaws.services.sagemakerruntime.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkmessaging/src/main/java/com/amazonaws/services/chimesdkmessaging/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonChimeSDKMessaging 3 | */ 4 | 5 | package com.amazonaws.services.chimesdkmessaging.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonConnectParticipant 3 | */ 4 | 5 | package com.amazonaws.services.connectparticipant.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-iot 2 | POM_DESCRIPTION=The AWS Android SDK for AWS IoT module holds the client classes that are used for communicating with AWS IoT Service 3 | POM_NAME=AWS SDK for Android - AWS IoT 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/src/main/java/com/amazonaws/services/kinesisfirehose/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonKinesisFirehose 3 | */ 4 | 5 | package com.amazonaws.services.kinesisfirehose.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-ec2/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-ec2 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service 3 | POM_NAME=AWS SDK for Android - Amazon EC2 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/services/pinpointanalytics/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonPinpointAnalytics 3 | */ 4 | 5 | package com.amazonaws.services.pinpointanalytics.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkidentity/src/main/java/com/amazonaws/services/chimesdkidentity/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonChimeSDKIdentity 3 | */ 4 | 5 | package com.amazonaws.services.chimesdkidentity.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/mobileconnectors/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The mobileconnectors package includes higher level classes that make accessing AWS services from a mobile device more convenient. 3 | */ 4 | 5 | package com.amazonaws.mobileconnectors; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-mapper/src/main/java/com/amazonaws/mobileconnectors/dynamodbv2/dynamodbmapper/marshallers/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Standard implementations of {@code ArgumentMarshaller}. 3 | */ 4 | 5 | package com.amazonaws.mobileconnectors.dynamodbv2.dynamodbmapper.marshallers; 6 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-signaling/src/main/java/com/amazonaws/services/kinesisvideosignaling/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSKinesisVideoSignaling 3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideosignaling.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kms/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-kms 2 | POM_DESCRIPTION=The AWS Android SDK for AWS KMS module holds the client classes that are used for communicating with AWS Key Management Service 3 | POM_NAME=AWS SDK for Android - AWS KMS 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-machinelearning/src/main/java/com/amazonaws/services/machinelearning/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonMachineLearning 3 | */ 4 | 5 | package com.amazonaws.services.machinelearning.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkmessaging/src/main/java/com/amazonaws/services/chimesdkmessaging/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonChimeSDKMessaging 3 | */ 4 | 5 | package com.amazonaws.services.chimesdkmessaging.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider/src/test/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /aws-android-sdk-lambda/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-lambda 2 | POM_DESCRIPTION=The AWS Android SDK for AWS Lambda module holds the client classes that are used for communicating with AWS Lambda Service 3 | POM_NAME=AWS SDK for Android - AWS Lambda 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/mobileconnectors/pinpoint/analytics/monetization/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Pinpoint helper classes for recording monetization and purchasing events 3 | */ 4 | 5 | package com.amazonaws.mobileconnectors.pinpoint.analytics.monetization; 6 | -------------------------------------------------------------------------------- /aws-android-sdk-polly/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-polly 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Polly module holds the client classes that are used for communicating with Amazon Polly Service 3 | POM_NAME=AWS SDK for Android - Amazon Polly 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-s3 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon S3 module holds the client classes that are used for communicating with Amazon Simple Storage Service 3 | POM_NAME=AWS SDK for Android - Amazon S3 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/errorResponse/ErrorResponseRootElementAsFoo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestCode 4 | TestMessage 5 | TestRequestId 6 | TestExtendedRequestId 7 | 8 | -------------------------------------------------------------------------------- /aws-android-sdk-sagemaker-runtime/src/main/java/com/amazonaws/services/sagemakerruntime/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonSageMakerRuntime 3 | */ 4 | 5 | package com.amazonaws.services.sagemakerruntime.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-ses/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-ses 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon SES module holds the client classes that are used for communicating with Amazon Simple Email Service 3 | POM_NAME=AWS SDK for Android - Amazon SES 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-sqs/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-sqs 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon SQS module holds the client classes that are used for communicating with Amazon Simple Queue Service 3 | POM_NAME=AWS SDK for Android - Amazon SQS 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon May 07 13:58:09 PDT 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip 7 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider/src/main/java/com/amazonaws/services/cognitoidentityprovider/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AmazonCognitoIdentityProvider 3 | */ 4 | 5 | package com.amazonaws.services.cognitoidentityprovider.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonConnectParticipant 3 | */ 4 | 5 | package com.amazonaws.services.connectparticipant.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-mapper/src/main/java/com/amazonaws/mobileconnectors/dynamodbv2/dynamodbmapper/unmarshallers/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Standard implementations of {@code ArgumentUnmarshaller}. 3 | */ 4 | 5 | package com.amazonaws.mobileconnectors.dynamodbv2.dynamodbmapper.unmarshallers; 6 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-ddb 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon DynamoDB module holds the client classes that are used for communicating with Amazon DynamoDB Service 3 | POM_NAME=AWS SDK for Android - Amazon DynamoDB 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/services/pinpointanalytics/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

Amazon Mobile Analytics is a service for collecting, visualizing, and understanding app usage data at scale.

3 | */ 4 | 5 | package com.amazonaws.services.pinpointanalytics; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/errorResponse/ErrorResponseRootElementAsFoo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TestCode 4 | TestMessage 5 | TestRequestId 6 | TestExtendedRequestId 7 | 8 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-sdb 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon SimpleDB module holds the client classes that are used for communicating with Amazon SimpleDB Service 3 | POM_NAME=AWS SDK for Android - Amazon SimpleDB 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-connect/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-connect 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Connect module holds the client classes that are used for communicating with Amazon Connect Service 3 | POM_NAME=AWS SDK for Android - Amazon Connect 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/AccessKeyNotSpecified.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | [test] 5 | aws_access_key_id=testProfile1 6 | aws_secret_access_key=testProfile1 7 | [test2] 8 | aws_secret_access_key=testProfile2 -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-kinesis 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Kinesis module holds the client classes that are used for communicating with Amazon Kinesis Service 3 | POM_NAME=AWS SDK for Android - Amazon Kinesis 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-sns/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-sns 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon SNS module holds the client classes that are used for communicating with Amazon Simple Notification Service 3 | POM_NAME=AWS SDK for Android - Amazon SNS 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-archivedmedia/src/main/java/com/amazonaws/services/kinesisvideoarchivedmedia/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSKinesisVideoArchivedMedia 3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideoarchivedmedia.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-signaling/src/main/java/com/amazonaws/services/kinesisvideosignaling/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSKinesisVideoSignaling 3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideosignaling.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-webrtcstorage/src/main/java/com/amazonaws/services/kinesisvideowebrtcstorage/model/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Classes modeling the various types represented by AWSKinesisVideoWebRTCStorage 3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideowebrtcstorage.model; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-location/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-location 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Location module holds the client classes that are used for communicating with Amazon Location Service 3 | POM_NAME=AWS SDK for Android - Amazon Location 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-pinpoint 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Pinpoint module holds the client classes that are used for communicating with Amazon Pinpoint Service 3 | POM_NAME=AWS SDK for Android - Amazon Pinpoint 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-textract/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-textract 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Textract module holds the client classes that are used for communicating with Amazon Textract Service 3 | POM_NAME=AWS SDK for Android - Amazon Textract 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/jniLibs/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Files in this directory and sub directories are distributed under a proprietary license by Amazon Technologies, Inc 2 | - Copyright 2016-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.(AWS Customer Agreement - https://aws.amazon.com/agreement/ ) 3 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/errorResponse/ErrorResponseChildTagError.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | TestErrorResponse 7 | 8 | -------------------------------------------------------------------------------- /aws-android-sdk-translate/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-translate 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Translate module holds the client classes that are used for communicating with Amazon Translate Service 3 | POM_NAME=AWS SDK for Android - Amazon Translate 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-auth-facebook 2 | POM_DESCRIPTION=The AWS Android SDK for AWS Facebook SignIn that holds the client classes used for enabling communication with Facebook SignIn 3 | POM_NAME=AWS SDK for Android - AWS Facebook SignIn 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-auth-google 2 | POM_DESCRIPTION=The AWS Android SDK for AWS Google SignIn that holds the client classes that are used for enabling communication with Google SignIn 3 | POM_NAME=AWS SDK for Android - AWS Google SignIn 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-cloudwatch/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-cloudwatch 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon CloudWatch module holds the client classes that are used for communicating with Amazon CloudWatch Service 3 | POM_NAME=AWS SDK for Android - Amazon CloudWatch 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider/src/main/java/com/amazonaws/services/cognitoidentityprovider/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAmazonCognitoIdentityProvider 3 | */ 4 | 5 | package com.amazonaws.services.cognitoidentityprovider.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-comprehend/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-comprehend 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Comprehend module holds the client classes that are used for communicating with Amazon Comprehend Service 3 | POM_NAME=AWS SDK for Android - Amazon Comprehend 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-logs/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-logs 2 | POM_DESCRIPTION=The AWS Java SDK for Amazon CloudWatch Logs module holds the client classes that are used for communicating with Amazon CloudWatch Logs Service 3 | POM_NAME=AWS SDK for Android - Amazon CloudWatch Logs 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/mobileconnectors/pinpoint/analytics/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Primary classes for interacting with the Pinpoint Analytics connector for 3 | * easily creating and recording app analytics 4 | */ 5 | 6 | package com.amazonaws.mobileconnectors.pinpoint.analytics; 7 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/errorResponse/ErrorResponseChildTagError.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | TestErrorResponse 7 | 8 | -------------------------------------------------------------------------------- /aws-android-sdk-transcribe/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-transcribe 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Transcribe module holds the client classes that are used for communicating with Amazon Transcribe Service 3 | POM_NAME=AWS SDK for Android - Amazon Transcribe 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-mapper/src/main/resources/com/amazonaws/mobileconnectors/dynamodbv2/dynamodbmapper/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

4 | Primary classes for interacting with the DynamoDB Object Mapper mobile connector for easily storing Java objects in the cloud. 5 |

6 | 7 | 8 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-archivedmedia/src/main/java/com/amazonaws/services/kinesisvideoarchivedmedia/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSKinesisVideoArchivedMedia 3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideoarchivedmedia.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-webrtcstorage/src/main/java/com/amazonaws/services/kinesisvideowebrtcstorage/model/transform/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Marhsalling for the various types represented byAWSKinesisVideoWebRTCStorage 3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideowebrtcstorage.model.transform; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-rekognition/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-rekognition 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Rekognition module holds the client classes that are used for communicating with Amazon Rekognition Service 3 | POM_NAME=AWS SDK for Android - Amazon Rekognition 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-mapper/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-ddb-mapper 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon DynamoDB Mapper module holds the client classes that are used for communicating with Amazon DynamoDB Service 3 | POM_NAME=AWS SDK for Android - Amazon DynamoDB Mapper 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-mobile-client 2 | POM_DESCRIPTION=The AWS Android SDK for Mobile Client holds the client classes that are used for initializing the SDK and instantiating the SDK clients. 3 | POM_NAME=AWS SDK for Android - AWS Mobile Client 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-textract/src/main/java/com/amazonaws/services/textract/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

Amazon Textract detects and analyzes text in documents and converts it into machine-readable text. This is the API reference documentation for Amazon Textract.

3 | */ 4 | 5 | package com.amazonaws.services.textract; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfilesWithSecretAccessKeyNotSpecified.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | [profile test] 5 | aws_access_key_id=testProfile1 6 | aws_secret_access_key=testProfile1 7 | [profile test2] 8 | aws_access_key_id=testProfile2 -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkidentity/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-chimesdkidentity 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Chime SDK Identity module holds the client classes that are used for communicating with Amazon Chime Service 3 | POM_NAME=AWS SDK for Android - Amazon Chime SDK Identity 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-auth-ui 2 | POM_DESCRIPTION=The AWS Android SDK for Authentication UI holds the client classes that are used for presenting the SignIn Screen with SignInButtons and Amazon Cognito UserPools UI 3 | POM_NAME=AWS SDK for Android - AWS Authentication UI 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkmessaging/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-chimesdkmessaging 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Chime SDK Messaging module holds the client classes that are used for communicating with Amazon Chime Service 3 | POM_NAME=AWS SDK for Android - Amazon Chime SDK Messaging 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-machinelearning/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-machinelearning 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Machine Learning module holds the client classes that are used for communicating with Amazon Machine Learning Service 3 | POM_NAME=AWS SDK for Android - Amazon Machine Learning 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-s3-test/src/androidTest/assets/samplePolicy.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version":"2008-10-17", 3 | "Statement":[{ 4 | "Sid":"AddPerm", 5 | "Effect":"Allow", 6 | "Principal": { 7 | "AWS": "*" 8 | }, 9 | "Action":["s3:GetObject"], 10 | "Resource":["arn:aws:s3:::@BUCKET_NAME@/*"] 11 | }] 12 | } -------------------------------------------------------------------------------- /aws-android-sdk-sagemaker-runtime/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-sagemaker-runtime 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon SageMaker Runtime module holds the client classes that are used for communicating with Amazon SageMaker Runtime Service 3 | POM_NAME=AWS SDK for Android - Amazon SageMaker Runtime 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/com/amazonaws/services/simpledb/CreateDomainResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | 1 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/com/amazonaws/services/simpledb/DeleteDomainResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | 1 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10dp 4 | 240dp 5 | 40dp 6 | 2dp 7 | 8 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/src/main/java/com/amazonaws/services/kinesis/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Amazon Kinesis Data Streams Service API Reference

Amazon Kinesis Data Streams is a managed service that scales elastically for real-time processing of streaming big data.

3 | */ 4 | 5 | package com.amazonaws.services.kinesis; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-archivedmedia/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-kinesisvideo 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Kinesis Video Streams module holds the client classes that are used for communicating with Amazon Kinesis Video Streams Service 3 | POM_NAME=AWS SDK for Android - Amazon Kinesis Video Streams 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/com/amazonaws/services/simpledb/PutAttributesResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | 1 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-apigateway-core/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-apigateway-core 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon API Gateway Runtime module holds the runtime library needed by the generated client for APIs defined in Amazon API Gateway. 3 | POM_NAME=AWS SDK for Android - Amazon API Gateway Client Runtime 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-connectparticipant/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-connectparticipant 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Connect Participant module holds the client classes that are used for communicating with Amazon Connect Participant Service 3 | POM_NAME=AWS SDK for Android - Amazon Connect Participant 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-signaling/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-kinesisvideo-signaling 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Kinesis Video Signaling module holds the client classes that are used for communicating with Amazon Kinesis Video Signaling Service 3 | POM_NAME=AWS SDK for Android - Amazon Kinesis 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/com/amazonaws/services/s3/samplePolicy.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version":"2008-10-17", 3 | "Statement":[{ 4 | "Sid":"AddPerm", 5 | "Effect":"Allow", 6 | "Principal": { 7 | "AWS": "*" 8 | }, 9 | "Action":["s3:GetObject"], 10 | "Resource":["arn:aws:s3:::@BUCKET_NAME@/*"] 11 | }] 12 | } -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/com/amazonaws/services/simpledb/DeleteAttributesResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | 1 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-userpools/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-auth-userpools 2 | POM_DESCRIPTION=The AWS Android SDK for Authentication - Cognito Userpools SignIn holds the client classes that are used for enabling communication with Cognito UserPools SignIn Provider 3 | POM_NAME=AWS SDK for Android - AWS Cognito Userpools SignIn 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/com/amazonaws/auth/sessionResponseExpired.json: -------------------------------------------------------------------------------- 1 | { 2 | "Code" : "Success", 3 | "LastUpdated" : "2012-05-02T22:55:54Z", 4 | "Type" : "AWS-HMAC", 5 | "AccessKeyId" : "ACCESS_KEY_ID", 6 | "SecretAccessKey" : "SECRET_ACCESS_KEY", 7 | "Token" : "TOKEN_TOKEN_TOKEN", 8 | "Expiration" : "2012-05-03T04:55:54Z" 9 | } 10 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfilesContainingOtherConfigurations.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_secret_access_key = defaultAccessKey 3 | aws_access_key_id = defaultSecretAccessKey 4 | region = us-west-2 5 | 6 | 7 | [test] 8 | output = sdfsdf 9 | region = saa 10 | aws_access_key_id = test 11 | aws_secret_access_key = test key 12 | 13 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-ec2/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-kms/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-logs/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-s3-test/src/androidTest/java/com/amazonaws/services/s3/samplePolicy.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version":"2008-10-17", 3 | "Statement":[{ 4 | "Sid":"AddPerm", 5 | "Effect":"Allow", 6 | "Principal": { 7 | "AWS": "*" 8 | }, 9 | "Action":["s3:GetObject"], 10 | "Resource":["arn:aws:s3:::@BUCKET_NAME@/*"] 11 | }] 12 | } -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/com/amazonaws/services/simpledb/BatchPutAttributesResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | 1 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-ses/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-sqs/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-core/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | apply from: rootProject.file('publishing.gradle') 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 11 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-cloudwatch/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-comprehend/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-connect/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-textract/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-transcribe/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-translate/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-apigateway-core/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | apply from: rootProject.file('publishing.gradle') 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-machinelearning/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-rekognition/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkidentity/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 30 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 30 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkmessaging/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 30 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 30 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider-test/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /aws-android-sdk-connectparticipant/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfilesWithSameProfileName.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | [test] 5 | aws_access_key_id=testProfile1 6 | aws_secret_access_key=testProfile1 7 | [test] 8 | aws_access_key_id=testProfile2 9 | aws_secret_access_key=testProfile2 10 | aws_session_token = testProfile2 -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-webrtcstorage/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | -------------------------------------------------------------------------------- /aws-android-sdk-sagemaker-runtime/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-cognitoidentityprovider 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Cognito Identity Provider module holds the client classes that are used for communicating with Amazon Cognito Identity Provider Service 3 | POM_NAME=AWS SDK for Android - Amazon Cognito Identity Provider 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-core 2 | POM_DESCRIPTION=The AWS SDK for Android - Core module holds the classes that is used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes. 3 | POM_NAME=AWS SDK for Android - Core Runtime 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-signaling/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | } 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider-test/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /aws-android-sdk-s3-test/src/androidTest/assets/errorResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | object1 5 | 123 6 | 7 | 8 | object2 9 | AccessDenied 10 | Access Denied 11 | 12 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-document/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-ddb-document 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon DynamoDB Document (Beta) provides full JSON data support, use of Document Path to access part of a document, and new data types such as Map, Primitive, List, and Boolean. 3 | POM_NAME=AWS SDK for Android - Amazon DynamoDB Document (Beta) 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-core/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-auth-core 2 | POM_DESCRIPTION=The AWS Android SDK for AWS Authentication Core module holds the client classes that are used for enabling communication with Amazon CognitoIdentityProvider, Amazon Cognito UserPools, Facebook and Google SignIn Providers 3 | POM_NAME=AWS SDK for Android - AWS Authentication Core 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfilesWithTwoAccessKeyUnderSameProfile.tst: -------------------------------------------------------------------------------- 1 | [default] 2 | aws_access_key_id=testDefault 3 | aws_secret_access_key=testDefault 4 | [profile test] 5 | aws_access_key_id=testProfile1 6 | aws_secret_access_key=testProfile1 7 | [profile test2] 8 | aws_access_key_id=testProfile2 9 | aws_access_key_id=testProfile3 10 | aws_secret_access_key=testProfile2 -------------------------------------------------------------------------------- /aws-android-sdk-sns/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | api project(':aws-android-sdk-sqs') 16 | } 17 | 18 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider-asf/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-cognitoidentityprovider-asf 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Cognito Identity Provider ASF module holds the client classes that are used for communicating with Amazon Cognito Identity Provider Advanced Security Features 3 | POM_NAME=AWS SDK for Android - Amazon Cognito Identity Provider ASF 4 | POM_PACKAGING=aar -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-webrtcstorage/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-kinesisvideo-webrtcstorage 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Kinesis Video Web RTC Storage module holds the client classes that are used for communicating with Amazon Kinesis Video Streams Service Web RTC Storage 3 | POM_NAME=AWS SDK for Android - Amazon Kinesis Video Streams Web RTC Storage 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-archivedmedia/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_ARTIFACT_ID=aws-android-sdk-kinesisvideo-archivedmedia 2 | POM_DESCRIPTION=The AWS Android SDK for Amazon Kinesis Video Streams Archived Media module holds the client classes that are used for communicating with Amazon Kinesis Video Streams Service Archived Media 3 | POM_NAME=AWS SDK for Android - Amazon Kinesis Video Streams Archived Media 4 | POM_PACKAGING=aar 5 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-core/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-signaling/src/main/java/com/amazonaws/services/kinesisvideosignaling/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

Kinesis Video Streams Signaling Service is a intermediate service that establishes a communication channel for discovering peers, transmitting offers and answers in order to establish peer-to-peer connection in webRTC technology.

3 | */ 4 | 5 | package com.amazonaws.services.kinesisvideosignaling; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 11 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | implementation 'com.google.guava:guava:29.0-android' 16 | } 17 | 18 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint-test/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/com/amazonaws/services/s3/multiObjectDelete/testResponses/errorResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | object1 5 | 123 6 | 7 | 8 | object2 9 | AccessDenied 10 | Access Denied 11 | 12 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/com/amazonaws/services/s3/multiObjectDelete/testResponses/errorResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | object1 5 | 123 6 | 7 | 8 | object2 9 | AccessDenied 10 | Access Denied 11 | 12 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 14 // appcompat 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-auth-core') 15 | implementation 'androidx.appcompat:appcompat:1.2.0' 16 | } 17 | 18 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=WARN, A1 2 | log4j.appender.A1=org.apache.log4j.ConsoleAppender 3 | log4j.appender.A1.layout=org.apache.log4j.PatternLayout 4 | 5 | # Print the date in ISO 8601 format 6 | log4j.appender.A1.layout.ConversionPattern=%d [%t] %-5p %c - %m%n 7 | 8 | # Adjust to see more / less logging 9 | #log4j.logger.com.amazonaws.ec2=DEBUG 10 | 11 | log4j.logger.com.amazonaws=DEBUG 12 | 13 | -------------------------------------------------------------------------------- /aws-android-sdk-comprehend/src/main/java/com/amazonaws/services/comprehend/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

Amazon Comprehend is an Amazon Web Services service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, the predominant sentiment expressed in them, the predominant language used, and more.

3 | */ 4 | 5 | package com.amazonaws.services.comprehend; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/errorResponse/ErrorResponseRepeatedXml.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | 7 | 8 | TestCode1 9 | TestMessage1 10 | TestRequestId1 11 | TestExtendedRequestId1 12 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/main/java/com/amazonaws/mobile/client/internal/oauth2/AuthorizeResponse.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobile.client.internal.oauth2; 2 | 3 | import android.net.Uri; 4 | 5 | public class AuthorizeResponse { 6 | Uri responseUri; 7 | String code; 8 | 9 | public Uri getResponseUri() { 10 | return responseUri; 11 | } 12 | 13 | public String getCode() { 14 | return code; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/errorResponse/ErrorResponseRepeatedXml.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | 7 | 8 | TestCode1 9 | TestMessage1 10 | TestRequestId1 11 | TestExtendedRequestId1 12 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/com/amazonaws/services/s3/model/transform/GetObjectTagsResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Foo 5 | 1 6 | 7 | 8 | Bar 9 | 2 10 | 11 | 12 | Baz 13 | 3 14 | 15 | 16 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/com/amazonaws/services/s3/model/transform/GetObjectTagsResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Foo 5 | 1 6 | 7 | 8 | Bar 9 | 2 10 | 11 | 12 | Baz 13 | 3 14 | 15 | 16 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/errorResponse/ErrorResponseNoErrorTag.xml: -------------------------------------------------------------------------------- 1 | TestCode 2 | TestMessage 3 | TestRequestId 4 | TestExtendedRequestId 5 | AdditionalDetails1 6 | AdditionalDetails2 7 | AdditionalDetails3 8 | AdditionalDetails4 9 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/errorResponse/ErrorResponseNoErrorTag.xml: -------------------------------------------------------------------------------- 1 | TestCode 2 | TestMessage 3 | TestRequestId 4 | TestExtendedRequestId 5 | AdditionalDetails1 6 | AdditionalDetails2 7 | AdditionalDetails3 8 | AdditionalDetails4 9 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | 16 | testImplementation 'junit:junit:4.13.1' 17 | testImplementation 'org.robolectric:robolectric:4.4' 18 | } 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/res/layout/voice_component.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /aws-android-sdk-testutils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sign-in 4 | "Sign-in with %s succeeded." 5 | "Sign-in with %s canceled." 6 | or sign in with 7 | Sign in with 8 | 9 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-document/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | implementation project(':aws-android-sdk-ddb') 16 | implementation 'com.google.guava:guava:29.0-android' 17 | } 18 | 19 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider-asf/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 30 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 30 10 | } 11 | 12 | compileOptions { 13 | sourceCompatibility 1.8 14 | targetCompatibility 1.8 15 | } 16 | } 17 | 18 | dependencies { 19 | api project(':aws-android-sdk-core') 20 | } -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/src/main/java/com/amazonaws/services/kinesisfirehose/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Amazon Kinesis Data Firehose API Reference

Amazon Kinesis Data Firehose is a fully managed service that delivers real-time streaming data to destinations such as Amazon Simple Storage Service (Amazon S3), Amazon OpenSearch Service, Amazon Redshift, Splunk, and various other supportd destinations.

3 | */ 4 | 5 | package com.amazonaws.services.kinesisfirehose; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /aws-android-sdk-polly/src/main/java/com/amazonaws/services/polly/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

Amazon Polly is a web service that makes it easy to synthesize speech from text.

The Amazon Polly service provides API operations for synthesizing high-quality speech from plain text and Speech Synthesis Markup Language (SSML), along with managing pronunciations lexicons that enable you to get the best results for your application domain.

3 | */ 4 | 5 | package com.amazonaws.services.polly; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-userpools/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 40dp 4 | 10dp 5 | 20sp 6 | 45dp 7 | 10dp 8 | 20dp 9 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/errorResponse/ErrorResponseChildTags.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | 7 | AdditionalDetails2 8 | AdditionalDetails3 9 | AdditionalDetails4 10 | 11 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/errorResponse/ErrorResponseChildTags.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | 7 | AdditionalDetails2 8 | AdditionalDetails3 9 | AdditionalDetails4 10 | 11 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/com/amazonaws/services/simpledb/ListDomainsResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | 1 6 | 1 7 | 8 | 9 | 1 10 | 1 11 | 12 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/mobileconnectors/pinpoint/targeting/notification/AppLevelOptOutProvider.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobileconnectors.pinpoint.targeting.notification; 2 | 3 | /** 4 | * Interface providing an app-level opt-out value. This can be used to override the system-level opt out. 5 | */ 6 | public interface AppLevelOptOutProvider { 7 | /** 8 | * @return True if the app should not receive notifications, false otherwise. 9 | */ 10 | boolean isOptedOut(); 11 | } 12 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/services/securitytoken/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Security Token Service

Security Token Service (STS) enables you to request temporary, limited-privilege credentials for users. This guide provides descriptions of the STS API. For more information about using this service, see Temporary Security Credentials.

3 | */ 4 | 5 | package com.amazonaws.services.securitytoken; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-facebook/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | apply from: rootProject.file('publishing.gradle') 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 14 // v4 support, brought from facebook sdk 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-auth-core') 15 | api 'com.facebook.android:facebook-login:11.2.0' 16 | implementation 'androidx.annotation:annotation:1.1.0' 17 | } 18 | 19 | -------------------------------------------------------------------------------- /aws-android-sdk-polly/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | 16 | testImplementation 'junit:junit:4.13.1' 17 | testImplementation 'org.mockito:mockito-all:1.10.19' 18 | testImplementation 'org.robolectric:robolectric:4.4' 19 | } 20 | 21 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/errorResponse/ErrorResponseWithAdditionalDetails.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | AdditionalDetails1 7 | AdditionalDetails2 8 | AdditionalDetails3 9 | AdditionalDetails4 10 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/errorResponse/ErrorResponseXMLNotProperFormat.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | AdditionalDetails1 7 | AdditionalDetails2 8 | AdditionalDetails3 9 | AdditionalDetails4 10 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/errorResponse/ErrorResponseWithAdditionalDetails.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | AdditionalDetails1 7 | AdditionalDetails2 8 | AdditionalDetails3 9 | AdditionalDetails4 10 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/errorResponse/ErrorResponseXMLNotProperFormat.xml: -------------------------------------------------------------------------------- 1 | 2 | TestCode 3 | TestMessage 4 | TestRequestId 5 | TestExtendedRequestId 6 | AdditionalDetails1 7 | AdditionalDetails2 8 | AdditionalDetails3 9 | AdditionalDetails4 10 | -------------------------------------------------------------------------------- /aws-android-sdk-ec2/src/main/java/com/amazonaws/services/ec2/package-info.java: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Synchronous and asynchronous client classes for accessing AmazonEC2. 4 | * 5 | * Amazon Elastic Compute Cloud

6 | * Amazon Elastic Compute Cloud (Amazon EC2) provides resizable computing 7 | * capacity in the Amazon Web Services (AWS) cloud. Using Amazon EC2 8 | * eliminates your need to invest in hardware up front, so you can 9 | * develop and deploy applications faster. 10 | *

11 | */ 12 | package com.amazonaws.services.ec2; 13 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/marshalling/MetricsConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | metrics-id 3 | 4 | 5 | documents/ 6 | 7 | foo 8 | bar 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/resources/unmarshalling/MetricsConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | metrics-id 3 | 4 | 5 | documents/ 6 | 7 | foo 8 | bar 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/marshalling/MetricsConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | metrics-id 3 | 4 | 5 | documents/ 6 | 7 | foo 8 | bar 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/resources/unmarshalling/MetricsConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | metrics-id 3 | 4 | 5 | documents/ 6 | 7 | foo 8 | bar 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-document/src/main/java/com/amazonaws/mobileconnectors/dynamodbv2/document/internal/Key.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobileconnectors.dynamodbv2.document.internal; 2 | 3 | import com.amazonaws.services.dynamodbv2.model.AttributeValue; 4 | 5 | import java.util.HashMap; 6 | import java.util.Map; 7 | 8 | public class Key extends HashMap { 9 | 10 | public Key() { 11 | this(new HashMap()); 12 | } 13 | 14 | public Key(Map paramMap) { 15 | super(paramMap); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 14 // gms auth brought by google sdk 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-auth-core') 15 | api 'com.google.android.gms:play-services-auth:18.1.0' 16 | implementation 'androidx.annotation:annotation:1.1.0' 17 | implementation 'androidx.appcompat:appcompat:1.2.0' 18 | } 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-userpools/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 14 // setAllCaps(), 11 otherwise 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-auth-core') 15 | api project(':aws-android-sdk-cognitoidentityprovider') 16 | implementation 'androidx.appcompat:appcompat:1.2.0' 17 | implementation 'androidx.annotation:annotation:1.1.0' 18 | } 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-polly/src/test/resources/com/amazonaws/services/polly/four-to-eight.pls: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | four 11 | eight 12 | 13 | -------------------------------------------------------------------------------- /aws-android-sdk-s3-test/src/androidTest/assets/fullResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | key1 5 | Version1 6 | 7 | 8 | key2 9 | Version2 10 | Code 11 | Message 12 | 13 | 14 | key3 15 | true 16 | Version3 17 | 18 | -------------------------------------------------------------------------------- /aws-android-sdk-polly/src/test/resources/com/amazonaws/services/polly/one-to-two.pls: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | one 11 | two 12 | 13 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkidentity/src/main/java/com/amazonaws/services/chimesdkidentity/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

The Amazon Chime SDK Identity APIs in this section allow software developers to create and manage unique instances of their messaging applications. These APIs provide the overarching framework for creating and sending messages. For more information about the identity APIs, refer to Amazon Chime SDK identity.

3 | */ 4 | 5 | package com.amazonaws.services.chimesdkidentity; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-chimesdkmessaging/src/main/java/com/amazonaws/services/chimesdkmessaging/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

The Amazon Chime SDK messaging APIs in this section allow software developers to send and receive messages in custom messaging applications. These APIs depend on the frameworks provided by the Amazon Chime SDK identity APIs. For more information about the messaging APIs, see Amazon Chime SDK messaging.

3 | */ 4 | 5 | package com.amazonaws.services.chimesdkmessaging; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-lambda/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | implementation 'androidx.annotation:annotation:1.1.0' 16 | 17 | testImplementation 'junit:junit:4.13.1' 18 | testImplementation 'org.mockito:mockito-all:1.10.19' 19 | testImplementation 'org.robolectric:robolectric:4.4' 20 | } 21 | 22 | -------------------------------------------------------------------------------- /aws-android-sdk-lambda/src/test/resources/com/amazonaws/mobileconnectors/util/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /aws-android-sdk-location/src/main/java/com/amazonaws/mobileconnectors/geo/tracker/EmptyTrackingListener.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobileconnectors.geo.tracker; 2 | 3 | /** 4 | * Empty implementation of Tracking Listener used as a placeholder if the user doesn't care about receiving events. 5 | */ 6 | public class EmptyTrackingListener implements TrackingListener { 7 | @Override 8 | public void onStop() {} 9 | 10 | @Override 11 | public void onDataPublished(TrackingPublishedEvent event) {} 12 | 13 | @Override 14 | public void onDataPublicationError(TrackingError error) {} 15 | } 16 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoauth/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesis/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | 16 | testImplementation 'commons-lang:commons-lang:20030203.000129' 17 | testImplementation 'junit:junit:4.13.1' 18 | testImplementation 'org.mockito:mockito-all:1.10.19' 19 | testImplementation 'org.robolectric:robolectric:4.4' 20 | } 21 | 22 | -------------------------------------------------------------------------------- /aws-android-sdk-location/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/com/amazonaws/services/s3/model/transform/QueueConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | QueueConfigId 4 | some-queue-arn 5 | SomeEvent1 6 | SomeEvent2 7 | 8 | 9 | 10 | Prefix 11 | some-prefix 12 | 13 | 14 | Suffix 15 | some-suffix 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/com/amazonaws/services/s3/model/transform/TopicConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TopicConfigId 4 | some-topic-arn 5 | SomeEvent1 6 | SomeEvent2 7 | 8 | 9 | 10 | Prefix 11 | some-prefix 12 | 13 | 14 | Suffix 15 | some-suffix 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/internal/keyvaluestore/KeyNotGeneratedException.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.internal.keyvaluestore; 2 | 3 | public class KeyNotGeneratedException extends Exception { 4 | public KeyNotGeneratedException() { 5 | super(); 6 | } 7 | 8 | public KeyNotGeneratedException(String s) { 9 | super(s); 10 | } 11 | 12 | public KeyNotGeneratedException(String s, Throwable throwable) { 13 | super(s, throwable); 14 | } 15 | 16 | public KeyNotGeneratedException(Throwable throwable) { 17 | super(throwable); 18 | } 19 | } 20 | 21 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/java/com/amazonaws/mobileconnectors/iot/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * AWSIotAndroidClient 3 | * 4 | * AWS IoT Android 5 | * 6 | * AWSIotAndroidClient provides access to the AWS IoT Service from an Android App. 7 | * IotKeystoreHelper provides helper methods for storing and retrieving certificates 8 | * and keys from a keystore. 9 | * 10 | * For more information about how AWS IoT works, see the 11 | * @see Developer Guide 12 | */ 13 | 14 | package com.amazonaws.mobileconnectors.iot; 15 | 16 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/com/amazonaws/services/s3/model/transform/QueueConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | QueueConfigId 4 | some-queue-arn 5 | SomeEvent1 6 | SomeEvent2 7 | 8 | 9 | 10 | Prefix 11 | some-prefix 12 | 13 | 14 | Suffix 15 | some-suffix 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/com/amazonaws/services/s3/model/transform/TopicConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TopicConfigId 4 | some-topic-arn 5 | SomeEvent1 6 | SomeEvent2 7 | 8 | 9 | 10 | Prefix 11 | some-prefix 12 | 13 | 14 | Suffix 15 | some-suffix 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/com/amazonaws/services/simpledb/GetAttributesResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 1 6 | 1 7 | 8 | 9 | 1 10 | 1 11 | 12 | 13 | 14 | 1 15 | 1 16 | 17 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/res/layout/activity_sign_in.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-mapper/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | useLibrary 'org.apache.http.legacy' 7 | 8 | defaultConfig { 9 | minSdkVersion 9 10 | targetSdkVersion 29 11 | } 12 | } 13 | 14 | dependencies { 15 | api project(':aws-android-sdk-ddb') 16 | api project(':aws-android-sdk-s3') 17 | 18 | testImplementation 'junit:junit:4.13.1' 19 | testImplementation 'org.easymock:easymock:3.1' 20 | testRuntimeOnly 'org.apache.httpcomponents:httpclient:4.5.12' 21 | } 22 | 23 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/java/com/amazonaws/mobileconnectors/iot/MqttManagerConnectionState.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobileconnectors.iot; 2 | 3 | /** 4 | * Possible connection states for MQTT connection of MqttManager. 5 | */ 6 | enum MqttManagerConnectionState { 7 | /** 8 | * Client is attempting to connect. 9 | */ 10 | Connecting, 11 | /** 12 | * Client successfully connected. 13 | */ 14 | Connected, 15 | /** 16 | * Not connected. 17 | */ 18 | Disconnected, 19 | /** 20 | * Automatically reconnecting after connection loss. 21 | */ 22 | Reconnecting 23 | } 24 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/com/amazonaws/services/s3/multiObjectDelete/testResponses/fullResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | key1 5 | Version1 6 | 7 | 8 | key2 9 | Version2 10 | Code 11 | Message 12 | 13 | 14 | key3 15 | true 16 | Version3 17 | 18 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/com/amazonaws/services/s3/multiObjectDelete/testResponses/fullResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | key1 5 | Version1 6 | 7 | 8 | key2 9 | Version2 10 | Code 11 | Message 12 | 13 | 14 | key3 15 | true 16 | Version3 17 | 18 | -------------------------------------------------------------------------------- /aws-android-sdk-testutils/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 29 5 | 6 | defaultConfig { 7 | minSdkVersion 14 // junit ext 8 | targetSdkVersion 29 9 | } 10 | } 11 | 12 | dependencies { 13 | api (project(':aws-android-sdk-core')) { 14 | exclude group: 'com.google.android', module: 'android' 15 | } 16 | implementation 'androidx.annotation:annotation:1.1.0' 17 | implementation 'androidx.test.ext:junit:1.1.2' 18 | implementation 'androidx.test:core:1.3.0' 19 | implementation 'androidx.test.uiautomator:uiautomator:2.2.0' 20 | } 21 | 22 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/test/resources/resources/profileconfig/ProfilesWithComments.tst: -------------------------------------------------------------------------------- 1 | # I love comments... 2 | 3 | # [a] 4 | [a] 5 | #aws_access_key_id=wrong-key 6 | aws_access_key_id=a 7 | # More comments... 8 | aws_secret_access_key=a 9 | unsupported_property=foo 10 | 11 | # More comments... 12 | 13 | [b] 14 | # More comments... 15 | aws_access_key_id=b 16 | aws_secret_access_key=b 17 | 18 | [c] 19 | aws_access_key_id=c 20 | # More comments... 21 | aws_secret_access_key=c 22 | aws_session_token=c 23 | 24 | [d] 25 | aws_access_key_id=d 26 | aws_secret_access_key=d 27 | # More comments... 28 | aws_session_token=d 29 | 30 | # More comments... 31 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/com/amazonaws/services/s3/model/transform/LambdaConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LambdaConfigId 4 | some-lambda-function-arn 5 | SomeEvent1 6 | SomeEvent2 7 | 8 | 9 | 10 | Prefix 11 | some-prefix 12 | 13 | 14 | Suffix 15 | some-suffix 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo-archivedmedia/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 21 // for kinesisvideo, which uses camera2 APIs. 9 | targetSdkVersion 29 10 | } 11 | 12 | packagingOptions { 13 | exclude 'META-INF/DEPENDENCIES' 14 | } 15 | } 16 | 17 | dependencies { 18 | api (project(':aws-android-sdk-core')) { 19 | exclude group: 'com.google.android', module: 'android' 20 | } 21 | implementation project(':aws-android-sdk-kinesisvideo') 22 | } 23 | 24 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/com/amazonaws/services/s3/model/transform/LambdaConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LambdaConfigId 4 | some-lambda-function-arn 5 | SomeEvent1 6 | SomeEvent2 7 | 8 | 9 | 10 | Prefix 11 | some-prefix 12 | 13 | 14 | Suffix 15 | some-suffix 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/main/java/com/amazonaws/mobile/client/results/ListDevicesResult.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobile.client.results; 2 | 3 | import java.util.List; 4 | 5 | public class ListDevicesResult { 6 | private List devices; 7 | private String paginationToken; 8 | 9 | public ListDevicesResult(List devices, String paginationToken) { 10 | this.devices = devices; 11 | this.paginationToken = paginationToken; 12 | } 13 | 14 | public List getDevices() { 15 | return devices; 16 | } 17 | 18 | public String getPaginationToken() { 19 | return paginationToken; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/main/java/com/amazonaws/mobileconnectors/iot/AWSIotMqttQos.java: -------------------------------------------------------------------------------- 1 | 2 | package com.amazonaws.mobileconnectors.iot; 3 | 4 | /** 5 | * Enum to encapsulate the QoS levels allowed by the AWS IoT Service. See: 6 | * http://docs.aws.amazon.com/iot/latest/developerguide/protocols.html 7 | */ 8 | public enum AWSIotMqttQos { 9 | /** QoS zero. */ 10 | QOS0, 11 | /** QoS one. */ 12 | QOS1; 13 | 14 | /** 15 | * Get as an integer to use in MQTT calls requiring an int. 16 | * 17 | * @return integer equivalent of the QoS value. 18 | */ 19 | public int asInt() { 20 | return (this == QOS0 ? 0 : 1); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-google/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 13 | 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature Request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Which AWS Services is the feature request for?** 8 | 9 | **Is your feature request related to a problem? Please describe.** 10 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 11 | 12 | **Describe the solution you'd like** 13 | A clear and concise description of what you want to happen. 14 | 15 | **Describe alternatives you've considered** 16 | A clear and concise description of any alternative solutions or features you've considered. 17 | 18 | **Additional context** 19 | Add any other context or screenshots about the feature request here. 20 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/java/com/amazonaws/services/s3/model/transform/CloudFunctionConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | CloudFunctionConfigId 4 | some-cloud-function-arn 5 | some-cloud-invoc-role 6 | SomeEvent1 7 | SomeEvent2 8 | 9 | 10 | 11 | Prefix 12 | some-prefix 13 | 14 | 15 | Suffix 16 | some-suffix 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/test/resources/com/amazonaws/services/s3/model/transform/CloudFunctionConfiguration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | CloudFunctionConfigId 4 | some-cloud-function-arn 5 | some-cloud-invoc-role 6 | SomeEvent1 7 | SomeEvent2 8 | 9 | 10 | 11 | Prefix 12 | some-prefix 13 | 14 | 15 | Suffix 16 | some-suffix 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /.github/workflows/issue_labeled.yml: -------------------------------------------------------------------------------- 1 | name: Issue Labeled 2 | on: 3 | issues: 4 | types: [labeled] 5 | 6 | jobs: 7 | remove-pending-triage-label: 8 | runs-on: ubuntu-latest 9 | if: ${{ contains(fromJSON('["question", "bug", "feature-request"]'), github.event.label.name) }} 10 | permissions: 11 | issues: write 12 | steps: 13 | - name: Remove the pending-triage label 14 | shell: bash 15 | env: 16 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 17 | ISSUE_NUMBER: ${{ github.event.issue.number }} 18 | REPOSITORY_NAME: ${{ github.event.repository.full_name }} 19 | run: | 20 | gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --remove-label "pending-triage" -------------------------------------------------------------------------------- /aws-android-sdk-iot-test/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 29 5 | 6 | defaultConfig { 7 | minSdkVersion 14 // junit ext 8 | targetSdkVersion 29 9 | testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' 10 | testInstrumentationRunnerArguments(['notClass': 'org.conscrypt.KitKatPlatformOpenSSLSocketImplAdapter']) 11 | } 12 | } 13 | 14 | dependencies { 15 | androidTestImplementation 'androidx.test.ext:junit:1.1.2' 16 | androidTestImplementation 'androidx.test:runner:1.3.0' 17 | androidTestImplementation project(':aws-android-sdk-iot') 18 | androidTestImplementation project(':aws-android-sdk-testutils') 19 | } 20 | 21 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 14 // androidx core, for NotificationCompat 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | implementation 'androidx.core:core:1.3.1' 16 | 17 | testImplementation 'androidx.test:core:1.3.0' 18 | testImplementation 'junit:junit:4.13.1' 19 | testImplementation 'org.hamcrest:hamcrest:2.2' 20 | testImplementation 'org.mockito:mockito-all:1.10.19' 21 | testImplementation 'org.robolectric:robolectric:4.4' 22 | } 23 | 24 | -------------------------------------------------------------------------------- /.github/workflows/snapshot_release.yml: -------------------------------------------------------------------------------- 1 | name: Android SDK Snapshot Release 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | permissions: 9 | id-token: write 10 | 11 | jobs: 12 | snapshot-release: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - name: Configure AWS Credentials 16 | uses: aws-actions/configure-aws-credentials@67fbcbb121271f7775d2e7715933280b06314838 # v1 17 | with: 18 | role-to-assume: ${{ secrets.SNAPSHOT_PUBLISHER_ROLE }} 19 | aws-region: us-east-1 20 | - name: Start Snapshot Release 21 | uses: aws-actions/aws-codebuild-run-build@f202c327329cbbebd13f986f74af162a8539b5fd # v1 22 | with: 23 | project-name: AndroidSDK-SnapshotRelease 24 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-userpools/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api (project(':aws-android-sdk-core')) { 15 | exclude group: 'com.google.android', module: 'android' 16 | } 17 | implementation 'org.conscrypt:conscrypt-android:2.5.3' 18 | implementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5' 19 | 20 | testImplementation 'junit:junit:4.13.1' 21 | testImplementation 'org.mockito:mockito-all:1.10.19' 22 | testImplementation 'org.robolectric:robolectric:4.4' 23 | } 24 | 25 | -------------------------------------------------------------------------------- /aws-android-sdk-s3-test/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | 13 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/res/raw/fakeawsconfiguration.json: -------------------------------------------------------------------------------- 1 | { 2 | "UserAgent": "aws-amplify/cli", 3 | "Version": "0.1.0", 4 | "IdentityManager": { 5 | "Default": {} 6 | }, 7 | "CredentialsProvider": { 8 | "CognitoIdentity": { 9 | "Default": { 10 | "__comment": "This was never a real pool. Just a random uuid.", 11 | "PoolId": "us-west-2:d7dd1ff8-908d-4d46-a5e2-a33be23bdade", 12 | "Region": "us-west-2" 13 | } 14 | } 15 | }, 16 | "CognitoUserPool": { 17 | "Default": { 18 | "PoolId": "us-west-2_K00lpooL5", 19 | "AppClientId": "app22client44SecretId0", 20 | "AppClientSecret": "appclientsecret5500secretyes", 21 | "Region": "us-west-2" 22 | } 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /aws-android-sdk-ddb-document/src/main/java/com/amazonaws/mobileconnectors/dynamodbv2/document/internal/KeyDescription.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobileconnectors.dynamodbv2.document.internal; 2 | 3 | import com.amazonaws.mobileconnectors.dynamodbv2.document.datatype.Primitive.DynamoDBPrimitiveType; 4 | 5 | public class KeyDescription { 6 | private DynamoDBPrimitiveType type; 7 | private boolean hash; 8 | 9 | public DynamoDBPrimitiveType getType() { 10 | return type; 11 | } 12 | 13 | public void setType(DynamoDBPrimitiveType type) { 14 | this.type = type; 15 | } 16 | public boolean isHash() { 17 | return hash; 18 | } 19 | 20 | public void setHash(boolean hash) { 21 | this.hash = hash; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /aws-android-sdk-sdb/src/test/resources/com/amazonaws/services/simpledb/DomainMetadataResponse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1 5 | 1 6 | 1 7 | 1 8 | 1 9 | 1 10 | 1 11 | 12 | 13 | 1 14 | 1 15 | 16 | -------------------------------------------------------------------------------- /aws-android-sdk-apigateway-test/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 29 5 | 6 | defaultConfig { 7 | minSdkVersion 14 // junit ext 8 | targetSdkVersion 29 9 | testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' 10 | } 11 | } 12 | 13 | dependencies { 14 | api (project(':aws-android-sdk-apigateway-core')) { 15 | exclude group: 'com.google.android', module: 'android' 16 | } 17 | 18 | androidTestImplementation 'androidx.test.ext:junit:1.1.2' 19 | androidTestImplementation 'androidx.test:runner:1.3.0' 20 | androidTestImplementation 'org.mockito:mockito-android:2.7.22' 21 | androidTestImplementation project(':aws-android-sdk-testutils') 22 | } 23 | 24 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/java/com/amazonaws/kinesisvideo/internal/client/mediasource/MediaSourceConfiguration.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.kinesisvideo.internal.client.mediasource; 2 | 3 | /** 4 | * Configuration for the media source. Each concrete media source 5 | * has different configuration implementation. E.g. for camera or microphone 6 | */ 7 | public interface MediaSourceConfiguration { 8 | 9 | interface Builder { 10 | T build(); 11 | } 12 | 13 | /** 14 | * @return type of the media source, e.g. "AndroidCamera" 15 | */ 16 | String getMediaSourceType(); 17 | 18 | /** 19 | * @return description of the media source, e.g. "AndroidCamera" 20 | */ 21 | String getMediaSourceDescription(); 22 | } 23 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | api project(':aws-android-sdk-kms') 16 | 17 | implementation 'androidx.appcompat:appcompat:1.2.0' 18 | 19 | testImplementation 'joda-time:joda-time:2.8.1' 20 | testImplementation 'junit:junit:4.13.1' 21 | testImplementation 'org.apache.commons:commons-io:1.3.2' 22 | testImplementation 'org.hamcrest:hamcrest:2.2' 23 | testImplementation 'org.mockito:mockito-all:1.10.19' 24 | testImplementation 'org.robolectric:robolectric:4.4' 25 | } 26 | 27 | -------------------------------------------------------------------------------- /aws-android-sdk-core/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | 11 | consumerProguardFiles 'consumer-proguard-rules.pro' 12 | } 13 | } 14 | 15 | dependencies { 16 | api 'com.google.code.gson:gson:2.8.9' 17 | implementation 'androidx.annotation:annotation:1.1.0' 18 | 19 | testImplementation 'joda-time:joda-time:2.8.1' 20 | testImplementation 'junit:junit:4.13.1' 21 | testImplementation 'org.apache.commons:commons-io:1.3.2' 22 | testImplementation 'org.easymock:easymock:3.1' 23 | testImplementation 'org.robolectric:robolectric:4.4' 24 | testImplementation 'xerces:xercesImpl:2.12.0' 25 | } 26 | 27 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoauth/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 16 // androidx.browser 9 | targetSdkVersion 29 10 | 11 | manifestPlaceholders = [ 12 | 'authRedirectScheme': 'FOR_LIBRARY_CONSUMER_TO_OVERRIDE' 13 | ] 14 | } 15 | 16 | compileOptions { 17 | sourceCompatibility 1.8 18 | targetCompatibility 1.8 19 | } 20 | } 21 | 22 | dependencies { 23 | api (project(':aws-android-sdk-core')) { 24 | exclude group: 'com.google.android', module: 'android' 25 | } 26 | api project(':aws-android-sdk-cognitoidentityprovider-asf') 27 | implementation 'androidx.browser:browser:1.3.0' 28 | } 29 | 30 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/main/java/com/amazonaws/mobile/client/internal/oauth2/OAuth2Exception.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobile.client.internal.oauth2; 2 | 3 | public class OAuth2Exception extends RuntimeException { 4 | String error, errorDescription, errorUri; 5 | 6 | public OAuth2Exception(String message, String error, String errorDescription, 7 | String errorUri) { 8 | super(message); 9 | this.error = error; 10 | this.errorDescription = errorDescription; 11 | this.errorUri = errorUri; 12 | } 13 | 14 | public String getError() { 15 | return error; 16 | } 17 | 18 | public String getErrorDescription() { 19 | return errorDescription; 20 | } 21 | 22 | public String getErrorUri() { 23 | return errorUri; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/java/com/amazonaws/kinesisvideo/internal/mediasource/OnStreamDataAvailable.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.kinesisvideo.internal.mediasource; 2 | 3 | import java.nio.ByteBuffer; 4 | 5 | import com.amazonaws.kinesisvideo.common.exception.KinesisVideoException; 6 | import com.amazonaws.kinesisvideo.producer.KinesisVideoFrame; 7 | 8 | public interface OnStreamDataAvailable { 9 | default void onFrameDataAvailable(final ByteBuffer frame) throws KinesisVideoException { 10 | } 11 | default void onFrameDataAvailable(final KinesisVideoFrame frame) throws KinesisVideoException { 12 | } 13 | default void onFragmentMetadataAvailable(final String metadataName, final String metadataValue, 14 | final boolean persistent) throws KinesisVideoException { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /aws-android-sdk-s3/src/main/java/com/amazonaws/services/s3/model/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"). 5 | * You may not use this file except in compliance with the License. 6 | * A copy of the License is located at 7 | * 8 | * http://aws.amazon.com/apache2.0 9 | * 10 | * or in the "license" file accompanying this file. This file is distributed 11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 | * express or implied. See the License for the specific language governing 13 | * permissions and limitations under the License. 14 | */ 15 | /** 16 | * Classes modeling the various types represented by Amazon S3. 17 | */ 18 | 19 | package com.amazonaws.services.s3.model; 20 | 21 | -------------------------------------------------------------------------------- /aws-android-sdk-transcribe/src/main/java/com/amazonaws/services/transcribe/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

Amazon Transcribe offers three main types of batch transcription: Standard, Medical, and Call Analytics.

  • Standard transcriptions are the most common option. Refer to for details.

  • Medical transcriptions are tailored to medical professionals and incorporate medical terms. A common use case for this service is transcribing doctor-patient dialogue into after-visit notes. Refer to for details.

  • Call Analytics transcriptions are designed for use with call center audio on two different channels; if you're looking for insight into customer service calls, use this option. Refer to for details.

3 | */ 4 | 5 | package com.amazonaws.services.transcribe; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-location/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 30 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 30 10 | } 11 | } 12 | 13 | dependencies { 14 | api project(':aws-android-sdk-core') 15 | implementation 'androidx.annotation:annotation:1.1.0' 16 | implementation 'com.google.android.gms:play-services-location:17.0.0' 17 | 18 | testImplementation 'commons-logging:commons-logging:1.2' 19 | testImplementation 'junit:junit:4.13.1' 20 | testImplementation 'org.apache.commons:commons-io:1.3.2' 21 | testImplementation 'org.hamcrest:hamcrest:2.2' 22 | testImplementation 'org.mockito:mockito-all:1.10.19' 23 | testImplementation 'org.robolectric:robolectric:4.4' 24 | } 25 | -------------------------------------------------------------------------------- /aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | *

Amazon Connect is an easy-to-use omnichannel cloud contact center service that enables companies of any size to deliver superior customer service at a lower cost. Amazon Connect communications capabilities make it easy for companies to deliver personalized interactions across communication channels, including chat.

Use the Amazon Connect Participant Service to manage participants (for example, agents, customers, and managers listening in), and to send messages and events within a chat contact. The APIs in the service enable the following: sending chat messages, attachment sharing, managing a participant's connection state and message events, and retrieving chat transcripts.

3 | */ 4 | 5 | package com.amazonaws.services.connectparticipant; 6 | 7 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/test/java/com/amazonaws/mobileconnectors/iot/MockDeliveryToken.java: -------------------------------------------------------------------------------- 1 | package com.amazonaws.mobileconnectors.iot; 2 | 3 | import org.eclipse.paho.client.mqttv3.IMqttDeliveryToken; 4 | import org.eclipse.paho.client.mqttv3.MqttException; 5 | import org.eclipse.paho.client.mqttv3.MqttMessage; 6 | import org.eclipse.paho.client.mqttv3.MqttToken; 7 | import org.eclipse.paho.client.mqttv3.internal.Token; 8 | 9 | public class MockDeliveryToken extends MqttToken implements IMqttDeliveryToken { 10 | 11 | public MockDeliveryToken() { 12 | super(); 13 | internalTok = new Token("unittest"); 14 | } 15 | 16 | public MqttMessage getMessage() throws MqttException { 17 | return internalTok.getMessage(); 18 | } 19 | 20 | protected void setMessage(MqttMessage msg) { 21 | internalTok.setMessage(msg); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/java/com/amazonaws/kinesisvideo/stream/throttling/Throttler.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2017-2018 Amazon.com, 3 | * Inc. or its affiliates. All Rights Reserved. 4 | * 5 | * Licensed under the Amazon Software License (the "License"). 6 | * You may not use this file except in compliance with the 7 | * License. A copy of the License is located at 8 | * 9 | * http://aws.amazon.com/asl/ 10 | * 11 | * or in the "license" file accompanying this file. This file is 12 | * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 13 | * CONDITIONS OF ANY KIND, express or implied. See the License 14 | * for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | 18 | package com.amazonaws.kinesisvideo.stream.throttling; 19 | 20 | public interface Throttler { 21 | void throttle(); 22 | } 23 | -------------------------------------------------------------------------------- /aws-android-sdk-mobile-client/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /aws-android-sdk-pinpoint/src/main/java/com/amazonaws/mobileconnectors/pinpoint/internal/core/util/Nullable.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2016-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"). 5 | * You may not use this file except in compliance with the License. 6 | * A copy of the License is located at 7 | * 8 | * http://aws.amazon.com/apache2.0 9 | * 10 | * or in the "license" file accompanying this file. This file is distributed 11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 | * express or implied. See the License for the specific language governing 13 | * permissions and limitations under the License. 14 | */ 15 | 16 | package com.amazonaws.mobileconnectors.pinpoint.internal.core.util; 17 | 18 | public @interface Nullable { 19 | 20 | } 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | A code sample or steps: 12 | ``` 13 | Your code 14 | ``` 15 | 16 | **Which AWS service(s) are affected?** 17 | 18 | **Expected behavior** 19 | A clear and concise description of what you expected to happen. 20 | 21 | **Screenshots** 22 | If applicable, add screenshots to help explain your problem. 23 | 24 | **Environment Information (please complete the following information):** 25 | - AWS Android SDK Version: [e.g. 2.6.25] 26 | - Device: [e.g. Pixel XL, Simulator] 27 | - Android Version: [e.g. Nougat 7.1.2] 28 | - Specific to simulators: [e.g. Yes/No] 29 | 30 | **Additional context** 31 | Add any other context about the problem here. 32 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-core/src/main/java/com/amazonaws/mobile/auth/core/internal/util/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2017 Amazon.com, Inc. or its affiliates. 3 | * All Rights Reserved. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | 18 | package com.amazonaws.mobile.auth.core.internal.util; -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/internal/CustomBackoffStrategy.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2012-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"). 5 | * You may not use this file except in compliance with the License. 6 | * A copy of the License is located at 7 | * 8 | * http://aws.amazon.com/apache2.0 9 | * 10 | * or in the "license" file accompanying this file. This file is distributed 11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 | * express or implied. See the License for the specific language governing 13 | * permissions and limitations under the License. 14 | */ 15 | 16 | package com.amazonaws.internal; 17 | 18 | public abstract class CustomBackoffStrategy { 19 | public abstract int getBackoffPeriod(int retryAttempts); 20 | } 21 | -------------------------------------------------------------------------------- /aws-android-sdk-kinesisvideo/src/main/java/com/amazonaws/kinesisvideo/common/function/Consumer.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2017-2018 Amazon.com, 3 | * Inc. or its affiliates. All Rights Reserved. 4 | * 5 | * Licensed under the Amazon Software License (the "License"). 6 | * You may not use this file except in compliance with the 7 | * License. A copy of the License is located at 8 | * 9 | * http://aws.amazon.com/asl/ 10 | * 11 | * or in the "license" file accompanying this file. This file is 12 | * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 13 | * CONDITIONS OF ANY KIND, express or implied. See the License 14 | * for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | 18 | package com.amazonaws.kinesisvideo.common.function; 19 | 20 | public interface Consumer { 21 | void accept(final T object); 22 | } 23 | -------------------------------------------------------------------------------- /aws-android-sdk-auth-ui/src/main/java/com/amazonaws/mobile/auth/ui/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013-2017 Amazon.com, Inc. or its affiliates. 3 | * All Rights Reserved. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | 18 | /** 19 | * Package Name. 20 | */ 21 | package com.amazonaws.mobile.auth.ui; 22 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/java/com/amazonaws/mobileconnectors/lex/interactionkit/exceptions/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"). 5 | * You may not use this file except in compliance with the License. 6 | * A copy of the License is located at 7 | * 8 | * http://aws.amazon.com/apache2.0 9 | * 10 | * or in the "license" file accompanying this file. This file is distributed 11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 | * express or implied. See the License for the specific language governing 13 | * permissions and limitations under the License. 14 | */ 15 | 16 | /** 17 | * Contains the public API Exceptions 18 | */ 19 | 20 | package com.amazonaws.mobileconnectors.lex.interactionkit.exceptions; 21 | -------------------------------------------------------------------------------- /aws-android-sdk-core/src/main/java/com/amazonaws/http/conn/Wrapped.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"). 5 | * You may not use this file except in compliance with the License. 6 | * A copy of the License is located at 7 | * 8 | * http://aws.amazon.com/apache2.0 9 | * 10 | * or in the "license" file accompanying this file. This file is distributed 11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 | * express or implied. See the License for the specific language governing 13 | * permissions and limitations under the License. 14 | */ 15 | 16 | package com.amazonaws.http.conn; 17 | 18 | /** 19 | * An internal marker interface to defend against accidental recursive 20 | * wrappings. 21 | */ 22 | interface Wrapped { 23 | } 24 | -------------------------------------------------------------------------------- /aws-android-sdk-iot/src/test/java/android/util/Log.java: -------------------------------------------------------------------------------- 1 | package android.util; 2 | 3 | /** 4 | * Avoid the need to use PowerMockito for Log! 5 | */ 6 | public final class Log { 7 | public static int d(String tag, String msg) { 8 | System.out.println("DEBUG: " + tag + ": " + msg); 9 | return 0; 10 | } 11 | 12 | public static int i(String tag, String msg) { 13 | System.out.println("INFO: " + tag + ": " + msg); 14 | return 0; 15 | } 16 | 17 | public static int w(String tag, String msg) { 18 | System.out.println("WARN: " + tag + ": " + msg); 19 | return 0; 20 | } 21 | 22 | public static int e(String tag, String msg) { 23 | System.out.println("ERROR: " + tag + ": " + msg); 24 | return 0; 25 | } 26 | 27 | public static boolean isLoggable(String tag, int level) { 28 | return false; 29 | } 30 | } -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/java/com/amazonaws/mobileconnectors/lex/interactionkit/config/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"). 5 | * You may not use this file except in compliance with the License. 6 | * A copy of the License is located at 7 | * 8 | * http://aws.amazon.com/apache2.0 9 | * 10 | * or in the "license" file accompanying this file. This file is distributed 11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 | * express or implied. See the License for the specific language governing 13 | * permissions and limitations under the License. 14 | */ 15 | 16 | /** 17 | * Contains the public API which handles client config 18 | */ 19 | 20 | package com.amazonaws.mobileconnectors.lex.interactionkit.config; 21 | -------------------------------------------------------------------------------- /aws-android-sdk-cognitoidentityprovider/build.gradle: -------------------------------------------------------------------------------- 1 | apply from: rootProject.file('publishing.gradle') 2 | apply plugin: 'com.android.library' 3 | 4 | android { 5 | compileSdkVersion 29 6 | 7 | defaultConfig { 8 | minSdkVersion 9 9 | targetSdkVersion 29 10 | } 11 | compileOptions { 12 | sourceCompatibility 1.8 13 | targetCompatibility 1.8 14 | } 15 | testOptions.unitTests.includeAndroidResources = true 16 | } 17 | 18 | dependencies { 19 | api project(':aws-android-sdk-core') 20 | api project(':aws-android-sdk-cognitoidentityprovider-asf') 21 | implementation 'androidx.annotation:annotation:1.1.0' 22 | 23 | testImplementation 'junit:junit:4.13.1' 24 | testImplementation 'org.mockito:mockito-core:1.10.19' 25 | testImplementation 'org.robolectric:robolectric:4.4' 26 | testImplementation 'androidx.test:core:1.3.0' 27 | } 28 | -------------------------------------------------------------------------------- /aws-android-sdk-lex/src/main/java/com/amazonaws/mobileconnectors/lex/interactionkit/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"). 5 | * You may not use this file except in compliance with the License. 6 | * A copy of the License is located at 7 | * 8 | * http://aws.amazon.com/apache2.0 9 | * 10 | * or in the "license" file accompanying this file. This file is distributed 11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 | * express or implied. See the License for the specific language governing 13 | * permissions and limitations under the License. 14 | */ 15 | 16 | /** 17 | * Contains the public API which handles Dialog between client and service 18 | */ 19 | 20 | package com.amazonaws.mobileconnectors.lex.interactionkit; 21 | --------------------------------------------------------------------------------