mirror of
https://github.com/hmalik144/Farmr.git
synced 2026-01-31 02:41:49 +00:00
53 lines
2.0 KiB
Groovy
53 lines
2.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
defaultConfig {
|
|
applicationId "com.appttude.h_mal.farmr"
|
|
minSdkVersion 21
|
|
targetSdkVersion 31
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.vectordrawable:vectordrawable:1.0.0'
|
|
implementation 'androidx.core:core-ktx:1.1.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.fragment:fragment-ktx:1.4.0'
|
|
implementation 'androidx.activity:activity-ktx:1.4.0'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
|
|
implementation 'androidx.preference:preference:1.2.1'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:core-ktx:1.4.0'
|
|
androidTestImplementation 'androidx.test:rules:1.4.0'
|
|
/ * Room database * /
|
|
def room_version = "2.4.3"
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
kapt "androidx.room:room-compiler:$room_version"
|
|
implementation "androidx.room:room-ktx:$room_version"
|
|
/ *Kodein Dependency Injection * /
|
|
def kodein_version = "6.2.1"
|
|
implementation "org.kodein.di:kodein-di-generic-jvm:$kodein_version"
|
|
implementation "org.kodein.di:kodein-di-framework-android-x:$kodein_version"
|
|
/ * jxl * /
|
|
implementation 'net.sourceforge.jexcelapi:jxl:2.6.12'
|
|
|
|
}
|