s3manager/app/build.gradle

52 lines
1.7 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
2023-01-10 21:21:34 +01:00
versionCode 68
2023-01-10 02:44:13 +01:00
versionName "0.7.6"
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 {
2022-12-29 18:54:21 +01:00
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
def exoplayer_version = "2.18.2"
2022-10-09 22:31:26 +02:00
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'
2023-01-01 17:16:33 +01:00
implementation"com.otaliastudios:zoomlayout:1.9.0"
2022-08-28 21:42:34 +02:00
// BEGIN AWS DEPENDENCIES
2023-01-10 21:21:34 +01:00
def aws_version = "2.61.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'
2022-12-29 18:54:21 +01:00
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
2022-08-27 21:14:08 +02:00
}