是否可以使用android读取aws-ssm参数存储值?

时间:2019-09-09 11:19:44

标签: android amazon-web-services aws-ssm

我正在尝试使用基于android的移动应用程序访问aws-ssm参数存储中存储的值。

几乎所有的aws服务都支持android,但aws-ssm则不支持。

https://aws-amplify.github.io/aws-sdk-android/docs/reference/index.html

在Java库中,已经有一个ssm的子库:

https://github.com/aws/aws-sdk-java/tree/master/aws-java-sdk-ssm

但这对我没有帮助。

在此方面,我将不胜感激。

1 个答案:

答案 0 :(得分:0)

我们通过为项目自己创建一个新的库来使其工作,该库导入了Java类,并对其进行了修改以与android一起使用。

Project Screenshot Android Studio

app文件的主build.gradle

implementation project(':aws-android-sdk-ssm')

和该库的build.gradle

apply plugin: 'com.android.library'

android {
    compileSdkVersion project.ext.compileSdkVersion
    defaultConfig {
        minSdkVersion project.ext.minSdkVersion
        targetSdkVersion project.ext.targetSdkVersion
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        consumerProguardFiles 'consumer-rules.pro'
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation 'com.amazonaws:aws-android-sdk-core:2.13.4'

    testImplementation 'junit:junit:4.12'

    androidTestImplementation 'androidx.test:core:1.2.0'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test:rules:1.2.0'

    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
}