s3manager/app/build.gradle

51 lines
1.6 KiB
Groovy
Raw Normal View History

2022-08-27 21:14:08 +02:00
plugins {
id 'com.android.application'
}
android {
2022-09-23 01:29:43 +02:00
compileSdk 33
2022-08-27 21:14:08 +02:00
defaultConfig {
applicationId "asgardius.page.s3manager"
2022-10-09 21:09:30 +02:00
minSdk 23
2022-09-12 23:51:23 +02:00
targetSdk 33
2022-12-28 02:16:39 +01:00
versionCode 50
versionName "0.4.4"
2022-09-07 03:37:23 +02:00
setProperty("archivesBaseName", "s3-manager-$versionName")
2022-08-27 21:14:08 +02:00
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-10-09 22:31:26 +02:00
def exoplayer_version = "2.18.1"
implementation "com.google.android.exoplayer:exoplayer:$exoplayer_version"
implementation "com.google.android.exoplayer:extension-mediasession:$exoplayer_version"
2022-08-31 20:54:24 +02:00
implementation 'androidx.recyclerview:recyclerview:1.2.1'
2022-08-28 21:42:34 +02:00
// BEGIN AWS DEPENDENCIES
2022-11-22 19:58:56 +01:00
def aws_version = "2.58.0"
2022-08-28 21:42:34 +02:00
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'
}