mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-16 02:38:47 +00:00
Create the infrastructure for the client to connect to API gateway in a generic manner. Tested with the ListPOST lambda.
54 lines
1.9 KiB
Groovy
54 lines
1.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion "30.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.listify"
|
|
minSdkVersion 28
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
compileOptions {
|
|
// Support for Java 8 features
|
|
coreLibraryDesugaringEnabled true
|
|
sourceCompatibility 1.8
|
|
targetCompatibility 1.8
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.navigation:navigation-fragment:2.1.0'
|
|
implementation 'androidx.navigation:navigation-ui:2.1.0'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
implementation 'com.amplifyframework:core:1.3.2'
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.10'
|
|
implementation 'com.amplifyframework:aws-auth-cognito:1.3.2'
|
|
implementation 'com.android.volley:volley:1.1.1'
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
compileOnly 'javax.annotation:javax.annotation-api:1.3.2'
|
|
implementation 'org.json:json:20200518'
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
|
|
|
} |