0
0

build.gradle 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 30
  6. buildToolsVersion "30.0.3"
  7. defaultConfig {
  8. applicationId "com.emato.ich"
  9. minSdkVersion 28
  10. targetSdkVersion 30
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. buildFeatures {
  26. viewBinding true
  27. }
  28. }
  29. dependencies {
  30. implementation 'androidx.appcompat:appcompat:1.2.0'
  31. implementation 'com.google.android.material:material:1.2.1'
  32. implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
  33. implementation 'androidx.navigation:navigation-fragment:2.3.0'
  34. implementation 'androidx.navigation:navigation-ui:2.3.0'
  35. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  36. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  37. implementation fileTree(dir: "libs", include: ["*.jar"])
  38. implementation fileTree(dir: "libs", include: ["*.aar"])
  39. implementation 'io.netty:netty-all:4.1.55.Final'
  40. implementation 'com.fasterxml.jackson.core:jackson-annotations:2.10.5'
  41. implementation 'com.fasterxml.jackson.core:jackson-core:2.10.5'
  42. implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.5'
  43. implementation 'com.squareup.okhttp3:okhttp:4.0.1'
  44. implementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5'
  45. testImplementation 'junit:junit:4.12'
  46. implementation files('libs/moterndevicecontroller.aar')
  47. }