Skip to content

Instantly share code, notes, and snippets.

@andyjsbell
Created November 5, 2020 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyjsbell/e68067072f8d52788b1eb5c121e4640c to your computer and use it in GitHub Desktop.
Save andyjsbell/e68067072f8d52788b1eb5c121e4640c to your computer and use it in GitHub Desktop.
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 29
defaultConfig {
applicationId "com.example.testawsiot"
minSdkVersion 26
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.amazonaws:aws-android-sdk-iot:2.19.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'software.amazon.awssdk.crt:android:0.8.4'
implementation 'software.amazon.awssdk.iotdevicesdk:android:1.2.9'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment