mirror of
https://github.com/hmalik144/EasyCC_Master.git
synced 2025-12-10 03:05:29 +00:00
88 lines
3.0 KiB
Groovy
88 lines
3.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
defaultConfig {
|
|
applicationId "com.appttude.h_mal.easycc"
|
|
minSdkVersion 21
|
|
targetSdkVersion 30
|
|
versionCode 5
|
|
versionName "4.1"
|
|
|
|
testInstrumentationRunner "com.appttude.h_mal.easycc.application.TestRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
|
|
viewBinding.enabled = true
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.core:core-ktx:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
|
|
androidTestImplementation 'androidx.test:rules:1.4.0-beta02'
|
|
|
|
//Retrofit and GSON
|
|
def retrofit_ver = "2.8.1"
|
|
implementation "com.squareup.retrofit2:retrofit:$retrofit_ver"
|
|
implementation "com.squareup.retrofit2:converter-gson:$retrofit_ver"
|
|
implementation "com.squareup.okhttp3:logging-interceptor:4.9.0"
|
|
|
|
//Kotlin Coroutines
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.0"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0"
|
|
|
|
// ViewModel and LiveData
|
|
implementation "androidx.lifecycle:lifecycle-extensions:2.1.0"
|
|
|
|
//New Material Design
|
|
implementation 'com.google.android.material:material:1.1.0-alpha10'
|
|
|
|
//Kodein Dependency Injection
|
|
implementation "org.kodein.di:kodein-di-generic-jvm:6.2.1"
|
|
implementation "org.kodein.di:kodein-di-framework-android-x:6.2.1"
|
|
|
|
//mockito and livedata testing
|
|
testImplementation 'org.mockito:mockito-inline:2.13.0'
|
|
testImplementation 'androidx.arch.core:core-testing:2.1.0'
|
|
|
|
//Android Room
|
|
implementation "androidx.room:room-runtime:2.2.0-rc01"
|
|
implementation "androidx.room:room-ktx:2.2.0-rc01"
|
|
kapt "androidx.room:room-compiler:2.2.0-rc01"
|
|
|
|
implementation "androidx.preference:preference-ktx:1.1.0"
|
|
|
|
//mock websever for testing retrofit responses
|
|
testImplementation "com.squareup.okhttp3:mockwebserver:4.6.0"
|
|
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
|
|
}
|