78 lines
2.6 KiB
Groovy
78 lines
2.6 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion "30.0.3"
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE.txt'
|
|
exclude 'META-INF/NOTICE.txt'
|
|
}
|
|
defaultConfig {
|
|
applicationId "eu.csc.personalapp"
|
|
minSdkVersion 19
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
multiDexEnabled true
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
implementation 'androidx.annotation:annotation:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
|
|
implementation 'androidx.navigation:navigation-fragment:2.3.5'
|
|
implementation 'androidx.navigation:navigation-ui:2.3.5'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
|
|
|
|
//Lombok
|
|
implementation 'org.projectlombok:lombok:1.18.20'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.20'
|
|
|
|
//room
|
|
implementation 'android.arch.persistence.room:runtime:1.1.1'
|
|
annotationProcessor 'android.arch.persistence.room:compiler:1.1.1'
|
|
|
|
// compile fileTree(dir: 'libs', include: '*.jar')
|
|
//implementation project(":module:EventReportModule")
|
|
//Retrofit
|
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.13'
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
|
|
|
|
//MQTT
|
|
implementation 'com.rabbitmq:amqp-client:5.12.0'
|
|
|
|
//compile files('libs/org.eclipse.paho.android.service-1.1.1.jar')
|
|
// compile files('libs/org.eclipse.paho.client.mqttv3-1.1.1.jar')
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
}
|
|
|