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 {
|
2024-08-10 20:03:44 +02:00
|
|
|
applicationId "asgardius.page.s3managermk2"
|
2023-02-04 02:59:08 +01:00
|
|
|
minSdk 21
|
2024-08-10 20:03:44 +02:00
|
|
|
targetSdk 34
|
|
|
|
versionCode 1
|
|
|
|
versionName "0.11.0"
|
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
|
|
|
|
}
|
2024-08-10 20:03:44 +02:00
|
|
|
namespace 'asgardius.page.s3managermk2'
|
2022-08-27 21:14:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
2023-02-22 17:55:45 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'com.google.android.material:material:1.8.0'
|
2022-12-29 18:54:21 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2023-12-07 13:43:46 +01:00
|
|
|
def exoplayer_version = "2.19.1"
|
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
|
2024-08-10 20:03:44 +02:00
|
|
|
def aws_version = "2.76.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'
|
2023-01-21 22:48:23 +01:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
2022-08-27 21:14:08 +02:00
|
|
|
}
|