101 lines
3.5 KiB
Groovy
101 lines
3.5 KiB
Groovy
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
apply plugin: 'kotlin-android-extensions'
|
||
|
apply plugin: 'kotlin-kapt'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 28
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 24
|
||
|
targetSdkVersion 28
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
|
||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
consumerProguardFiles 'consumer-rules.pro'
|
||
|
|
||
|
// 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.6.7-dev"'
|
||
|
buildConfigField "String", "DEV_VERSION_COMMIT", '"65c8cc98804cfc366239ad2bedb2dd98e3e4f3c2"'
|
||
|
buildConfigField "String", "DEV_VERSION_COMMIT_DATE", '"16.8.2020"' // 16th 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:1.1.0'
|
||
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
||
|
implementation 'androidx.core:core-ktx:1.2.0'
|
||
|
implementation "androidx.preference:preference-ktx:1.1.1"
|
||
|
implementation "androidx.activity:activity-ktx:${activityVersion}"
|
||
|
implementation 'com.google.android.material:material:1.1.0'
|
||
|
|
||
|
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"
|
||
|
|
||
|
// Omnipod - start
|
||
|
implementation 'org.apache.commons:commons-lang3:3.10'
|
||
|
implementation 'net.danlew:android.joda:2.10.6'
|
||
|
implementation "com.google.code.gson:gson:2.8.6"
|
||
|
implementation(name: "com.atech-software.android.library.wizardpager-1.1.4", ext: "aar")
|
||
|
// Omnipod - end
|
||
|
|
||
|
implementation "com.google.dagger:dagger-android:$dagger_version"
|
||
|
implementation "com.google.dagger:dagger-android-support:$dagger_version"
|
||
|
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"
|
||
|
|
||
|
testImplementation 'junit:junit:4.13'
|
||
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
||
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
||
|
|
||
|
|
||
|
}
|