fedilab-Android-App/autoimageslider/build.gradle

39 lines
896 B
Groovy
Raw Permalink Normal View History

2022-04-27 15:20:42 +02:00
apply plugin: 'com.android.library'
android {
2023-01-06 18:21:41 +01:00
compileSdkVersion 33
2022-04-27 15:20:42 +02:00
defaultConfig {
minSdkVersion 15
2023-01-06 18:21:41 +01:00
targetSdkVersion 33
2022-04-27 15:20:42 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2023-12-12 15:47:15 +01:00
namespace 'com.smarteist.autoimageslider'
2022-04-27 15:20:42 +02:00
}
// Add a new configuration to hold your dependencies
configurations {
libConfig
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
//noinspection GradleCompatible
2023-01-06 18:21:41 +01:00
implementation 'androidx.appcompat:appcompat:1.5.1'
2022-04-27 15:20:42 +02:00
testImplementation 'junit:junit:4.13.2'
2023-01-06 18:21:41 +01:00
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
2022-04-27 15:20:42 +02:00
}