52 lines
No EOL
1.7 KiB
Groovy
52 lines
No EOL
1.7 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "asgardius.page.s3manager"
|
|
minSdk 23
|
|
targetSdk 33
|
|
versionCode 59
|
|
versionName "0.6.1"
|
|
setProperty("archivesBaseName", "s3-manager-$versionName")
|
|
|
|
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
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
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"
|
|
implementation "com.google.android.exoplayer:exoplayer:$exoplayer_version"
|
|
implementation "com.google.android.exoplayer:extension-mediasession:$exoplayer_version"
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
implementation"com.otaliastudios:zoomlayout:1.9.0"
|
|
// BEGIN AWS DEPENDENCIES
|
|
def aws_version = "2.60.0"
|
|
implementation "com.amazonaws:aws-android-sdk-s3:$aws_version"
|
|
implementation ("com.amazonaws:aws-android-sdk-mobile-client:$aws_version") { transitive = true }
|
|
// END AWS DEPENDENCIES
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
|
|
} |