apply plugin: 'com.android.application' android { compileSdkVersion 34 defaultConfig { applicationId "com.rhinemann.project" minSdkVersion 28 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 } namespace 'com.rhinemann.project' } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) 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' def multidex_version = "2.0.1" implementation "androidx.multidex:multidex:$multidex_version" implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' }