plugins { id 'com.android.application' } android { compileSdkVersion 30 buildToolsVersion "30.0.3" apply plugin: "androidx.navigation.safeargs" defaultConfig { applicationId "cc.pogoda.mobile.meteosystem" minSdkVersion 24 targetSdkVersion 30 versionCode 9 versionName "0.9-beta" 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 } } repositories { maven { url 'https://jitpack.io' } } dependencies { implementation 'androidx.appcompat:appcompat:1.3.1' implementation 'com.google.android.material:material:1.4.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.navigation:navigation-fragment:2.3.5' implementation 'androidx.navigation:navigation-ui:2.3.5' implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation 'com.squareup.retrofit2:converter-gson:2.9.0' implementation 'com.google.code.gson:gson:2.8.6' implementation 'com.squareup.okhttp3:logging-interceptor:4.9.2' implementation 'com.squareup.okhttp3:okhttp:4.9.2' implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' implementation 'com.jakewharton.threetenabp:threetenabp:1.2.1' implementation 'org.greenrobot:eventbus:3.0.0' implementation 'org.apache.poi:poi:3.12' // implementation 'org.apache.poi:poi-ooxml:3.12' implementation 'com.fasterxml:aalto-xml:1.0.0' }