Files
AndroidStudioProjects
.idea
Reticule2
TP1
.idea
ex1LinearLayout
.idea
app
src
.gitignore
build.gradle
proguard-rules.pro
gradle
.gitignore
build.gradle
gradle.properties
gradlew
gradlew.bat
settings.gradle
ex1RelativeLayout
ex1TableLayout
.gitignore
TP2
TP3
TP4
TP5
TP6
TP7
pourchot_dev45
pourchot_dev45.tar.gz
Automate
ControleMachine1
ControleMachine2
ControleMachineJava
DEV1.1
DEV2.1
DEV3.1
DEV3.2
DEV3.4
DEV32
DEV4.4
SAe
.gitignore
Ex1TP2.mdj
README.md
Vote.java
pourchot_dev32.tar.gz
DEV/AndroidStudioProjects/TP1/ex1LinearLayout/app/build.gradle

39 lines
1.0 KiB
Groovy
Raw Normal View History

2025-03-13 12:01:03 +01:00
plugins {
id 'com.android.application'
}
android {
namespace 'com.example.ex1'
compileSdk 33
defaultConfig {
applicationId "com.example.ex1"
minSdk 19
targetSdk 33
versionCode 1
versionName "1.0"
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
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}