错误:包com.amazonaws.services.dynamodbv2不存在?

时间:2015-10-13 06:23:29

标签: java android amazon-web-services

我正在尝试导入this。 在Android Studio中。

我收到错误:

Error:(21, 41) error: package com.amazonaws.services.dynamodbv2 does not exist ?

我已经参考了这个AWS DynamoDB tutorial does not import certain classes问题。

但它无法解决我的问题。

我的屏幕看起来像这样可以帮助您理解我的项目结构。

enter image description here

build.gradel

apply plugin: 'com.android.application'

android {
    compileSdkVersion 10
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.amazonaws.demo.userpreferencesom"
        minSdkVersion 10
        targetSdkVersion 20
    }

    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt')
        }
    }


    dependencies {
        repositories {
            mavenCentral()
        }

        compile 'com.google.android.gms:play-services:6.1.+'
        compile 'com.amazonaws:aws-android-sdk-core:2.2.+'
        compile fileTree(include: '*.jar', dir: 'libs')
    }}

谢谢。