s3manager/app/build.gradle

47 lines
1.4 KiB
Groovy
Raw Normal View History

2022-08-27 21:14:08 +02:00
plugins {
id 'com.android.application'
}
android {
compileSdk 32
defaultConfig {
applicationId "asgardius.page.s3manager"
2022-08-27 21:26:47 +02:00
minSdk 26
2022-08-27 21:14:08 +02:00
targetSdk 32
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
}
2022-08-28 01:48:02 +02:00
buildFeatures {
viewBinding true
}
2022-08-27 21:14:08 +02:00
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
2022-08-28 03:52:17 +02:00
implementation 'com.google.android.exoplayer:exoplayer:2.18.1'
2022-08-28 21:42:34 +02:00
// BEGIN AWS DEPENDENCIES
def aws_version = "2.16.+"
implementation "com.amazonaws:aws-android-sdk-s3:$aws_version"
implementation ("com.amazonaws:aws-android-sdk-mobile-client:$aws_version") { transitive = true }
// END AWS DEPENDENCIES
2022-08-27 21:14:08 +02:00
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}