Android/TP07/4Requete/app/build.gradle

26 lines
575 B
Groovy
Raw Normal View History

2024-03-25 22:09:30 +01:00
apply plugin: 'com.android.application'
android {
compileSdk 33
buildToolsVersion '34.0.0'
defaultConfig {
applicationId "fr.iut_fbleau.apl41.couleurs"
minSdkVersion 19
targetSdk 33
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
}