-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
com.amazonaws.appsync through error #367
Comments
@Varun-Dagur Could you please try removing |
build gradle : app android {
} dependencies {
} buildscript {
// //classpath "com.android.tools.build:gradle:4.2.1"
} allprojects {
} task clean(type: Delete) { Class 'S3ObjectInput' must either be declared abstract or implement abstract method 'localUri()' in 'S3InputObjectInterface' |
Could you try by removing |
I also have an object like this:
and in generated code, instead of implementing InputType, it implements S3ObjectInterface and I get the same error. And when I change my object name(S3ObjectInterface to anything else) it works just fine! |
classpath 'com.amplifyframework:amplify-tools-gradle-plugin:1.0.2'
apply plugin: 'com.android.application'
apply plugin: 'com.amazonaws.appsync'
apply plugin: 'realm-android'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
implementation 'com.amazonaws:aws-android-sdk-appsync:3.1.1'
error: S3ObjectInput is not abstract and does not override abstract method mimeType() in S3InputObjectInterface
public final class S3ObjectInput implements S3InputObjectInterface {
}
methods are not implemented here.
The text was updated successfully, but these errors were encountered: