mirror of
https://github.com/hmalik144/Farmr.git
synced 2025-12-10 02:25:19 +00:00
94 lines
4.5 KiB
Groovy
94 lines
4.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
apply plugin: 'androidx.navigation.safeargs'
|
|
|
|
def relStorePassword = System.getenv("RELEASE_STORE_PASSWORD")
|
|
def relKeyPassword = System.getenv("RELEASE_KEY_PASSWORD")
|
|
def relKeyAlias = System.getenv("RELEASE_KEY_ALIAS")
|
|
|
|
def keystorePath = System.getenv('PWD') + "/app/keystore.jks"
|
|
def keystore = file(keystorePath).exists() ? file(keystorePath) : null
|
|
android {
|
|
compileSdkVersion COMPILE_SDK_VERSION
|
|
defaultConfig {
|
|
applicationId "com.appttude.h_mal.farmr"
|
|
minSdkVersion MIN_SDK_VERSION
|
|
targetSdkVersion TARGET_SDK_VERSION
|
|
versionCode 7
|
|
versionName "3.0"
|
|
testInstrumentationRunner 'com.appttude.h_mal.farmr.application.TestRunner'
|
|
vectorDrawables.useSupportLibrary = true
|
|
}
|
|
signingConfigs {
|
|
release {
|
|
storePassword relStorePassword
|
|
keyPassword relKeyPassword
|
|
keyAlias relKeyAlias
|
|
storeFile keystore
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
signingConfig signingConfigs.release
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
useLibrary 'android.test.mock'
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.core:core-ktx:$CORE_KTX_VERSION"
|
|
implementation "androidx.appcompat:appcompat:$MATERIAL_VERSION"
|
|
implementation "com.google.android.material:material:$MATERIAL_VERSION"
|
|
implementation "androidx.constraintlayout:constraintlayout:$CONSTR_LAYOUT_VERSION"
|
|
implementation "androidx.preference:preference:$PREFERENCES_VERSION"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$KOTLIN_VERSION"
|
|
implementation "androidx.core:core:$CORE_VERSION"
|
|
implementation "androidx.fragment:fragment:$FRAGMENT_VERSION"
|
|
implementation "androidx.lifecycle:lifecycle-common:$LIFECYCLE_VERSION"
|
|
implementation "androidx.lifecycle:lifecycle-livedata-core:$LIFECYCLE_VERSION"
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel:$LIFECYCLE_VERSION"
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
/ * Fragment Navigation * /
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$NAVIGATION_VERSION"
|
|
implementation "androidx.navigation:navigation-ui-ktx:$NAVIGATION_VERSION"
|
|
/ * Unit testing * /
|
|
testImplementation "junit:junit:$JUNIT_VERSION"
|
|
androidTestRuntimeOnly "org.jetbrains.kotlin:kotlin-test-junit:$KOTLIN_VERSION"
|
|
testRuntimeOnly "org.jetbrains.kotlin:kotlin-test-junit:$KOTLIN_VERSION"
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test:$KOTLIN_VERSION"
|
|
androidTestImplementation "androidx.test:rules:$TEST_KTX_VERSION"
|
|
androidTestImplementation 'androidx.test:core:1.5.0'
|
|
androidTestImplementation 'androidx.test:monitor:1.6.1'
|
|
androidTestImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1'
|
|
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1'
|
|
/ * mockito and livedata testing * /
|
|
testImplementation "org.mockito:mockito-inline:$MOKITO_INLINE_VERSION"
|
|
testImplementation "androidx.arch.core:core-testing:$CORE_TEST_VERSION"
|
|
testImplementation 'org.mockito:mockito-core:2.19.0'
|
|
/ * MockK * /
|
|
testImplementation "io.mockk:mockk:$MOCKK_VERSION"
|
|
androidTestImplementation "io.mockk:mockk-android:$MOCKK_VERSION"
|
|
testImplementation "io.mockk:mockk-dsl-jvm:$MOCKK_VERSION"
|
|
/ * Android Espresso * /
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:$ESPRESSO_VERSION"
|
|
androidTestImplementation "androidx.test.espresso:espresso-idling-resource:$ESPRESSO_VERSION"
|
|
androidTestImplementation "androidx.test:runner:$TEST_RUNNER_VERSION"
|
|
androidTestImplementation "androidx.test.espresso:espresso-contrib:$ESPRESSO_VERSION"
|
|
androidTestImplementation "org.hamcrest:hamcrest:$HAMCREST_VERSION"
|
|
/ * Room database * /
|
|
runtimeOnly "androidx.room:room-runtime:$ROOM_VERSION"
|
|
implementation "androidx.room:room-ktx:$ROOM_VERSION"
|
|
/ *Kodein Dependency Injection * /
|
|
implementation "org.kodein.di:kodein-di-generic-jvm:$KODEIN_VERSION"
|
|
implementation "org.kodein.di:kodein-di-framework-android-x:$KODEIN_VERSION"
|
|
implementation "org.kodein.di:kodein-di-core-jvm:$KODEIN_VERSION"
|
|
implementation "org.kodein.di:kodein-di-framework-android-core:$KODEIN_VERSION"
|
|
/ * jxl * /
|
|
implementation "net.sourceforge.jexcelapi:jxl:$JEXCEL_VERSION"
|
|
/ * calendar view * /
|
|
implementation 'com.applandeo:material-calendar-view:1.7.0'
|
|
}
|