Coursework_Semester_IV/app/build.gradle

44 lines
1.3 KiB
Groovy
Raw Normal View History

2021-12-08 10:49:12 +02:00
apply plugin: 'com.android.application'
android {
2024-06-06 07:36:29 +03:00
compileSdkVersion 34
2021-12-08 10:49:12 +02:00
defaultConfig {
applicationId "com.rhinemann.project"
2024-06-06 07:36:29 +03:00
minSdkVersion 28
2021-12-08 10:49:12 +02:00
targetSdkVersion 30
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding true
}
2024-03-09 21:21:54 +02:00
namespace 'com.rhinemann.project'
2021-12-08 10:49:12 +02:00
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
2024-06-06 07:36:29 +03:00
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
// implementation 'com.jjoe64:graphview:4.2.2'
implementation 'com.google.android.material:material:1.11.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
2021-12-08 10:49:12 +02:00
def multidex_version = "2.0.1"
implementation "androidx.multidex:multidex:$multidex_version"
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
}