116 lines
4.3 KiB
Groovy
116 lines
4.3 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
ext {
|
|
powermockVersion = "1.7.3"
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
minSdkVersion 24
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles 'consumer-rules.pro'
|
|
|
|
// OMNIPOD: for usage in Firebase event during testing phase
|
|
buildConfigField "String", "VERSION", '"2.7-omnipod-0.4.1-SNAPSHOT"'
|
|
// OMNIPOD: Keep track of what commit from the main repository we're on, these fields aren't actually used anywhere
|
|
buildConfigField "String", "DEV_VERSION", '"2.7.0-rc4"'
|
|
buildConfigField "String", "DEV_VERSION_COMMIT", '"7d5dc54656c961660451c4fa4c6ea66bd83a1c46"'
|
|
buildConfigField "String", "DEV_VERSION_COMMIT_DATE", '"21.8.2020"' // 21st of August
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
testCoverageEnabled(project.hasProperty('coverage'))
|
|
}
|
|
firebaseDisable {
|
|
System.setProperty("disableFirebase", "true")
|
|
ext.enableCrashlytics = false
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation project(':rileylink')
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompat_verison"
|
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
|
implementation "androidx.core:core-ktx:$coreVersion"
|
|
implementation "androidx.preference:preference-ktx:$preferencektx_version"
|
|
implementation "androidx.activity:activity-ktx:${activityVersion}"
|
|
implementation "androidx.fragment:fragment-ktx:${fragmentktx_version}"
|
|
implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
|
|
implementation "com.google.android.material:material:$material_version"
|
|
|
|
implementation "io.reactivex.rxjava2:rxandroid:${rxandroid_version}"
|
|
|
|
// Graphview cannot be upgraded
|
|
implementation "com.jjoe64:graphview:4.0.1"
|
|
|
|
implementation "com.joanzapata.iconify:android-iconify-fontawesome:2.2.2"
|
|
|
|
implementation "org.apache.commons:commons-lang3:$commonslang3_version"
|
|
implementation 'net.danlew:android.joda:2.10.6'
|
|
implementation "com.google.code.gson:gson:2.8.6"
|
|
|
|
implementation "com.google.dagger:dagger-android:$dagger_version"
|
|
implementation "com.google.dagger:dagger-android-support:$dagger_version"
|
|
implementation 'androidx.navigation:navigation-runtime:2.3.1'
|
|
annotationProcessor "com.google.dagger:dagger-compiler:$dagger_version"
|
|
annotationProcessor "com.google.dagger:dagger-android-processor:$dagger_version"
|
|
kapt "com.google.dagger:dagger-android-processor:$dagger_version"
|
|
kapt "com.google.dagger:dagger-compiler:$dagger_version"
|
|
|
|
// Navigation
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
|
|
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
|
|
|
|
implementation "com.google.android.material:material:$material_version"
|
|
|
|
testImplementation "junit:junit:$junit_version"
|
|
testImplementation "org.mockito:mockito-core:2.8.47"
|
|
testImplementation "org.powermock:powermock-api-mockito2:$powermockVersion"
|
|
testImplementation "org.powermock:powermock-module-junit4:${powermockVersion}"
|
|
testImplementation 'joda-time:joda-time:2.10.6'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
}
|