build.gradle 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4. android {
  5. compileSdkVersion 28
  6. defaultConfig {
  7. applicationId "com.sduduzog.slimlauncher"
  8. minSdkVersion 15
  9. targetSdkVersion 28
  10. versionCode 14
  11. versionName "1.2.6"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. vectorDrawables.useSupportLibrary = true
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled true
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. debug {
  21. minifyEnabled false
  22. applicationIdSuffix ".debug"
  23. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  24. }
  25. }
  26. }
  27. dependencies {
  28. implementation fileTree(include: ['*.jar'], dir: 'libs')
  29. // Kotlin Libraries
  30. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  31. implementation 'androidx.core:core-ktx:1.0.0'
  32. // Support Libraries
  33. implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
  34. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  35. implementation 'androidx.cardview:cardview:1.0.0-rc02'
  36. implementation 'com.google.android.material:material:1.0.0-alpha1'
  37. implementation 'androidx.recyclerview:recyclerview:1.0.0-rc02'
  38. // Arch Components
  39. implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0-rc01'
  40. implementation 'android.arch.navigation:navigation-fragment:1.0.0-alpha06'
  41. implementation 'androidx.room:room-runtime:2.0.0-alpha1'
  42. annotationProcessor "androidx.room:room-compiler:2.0.0-alpha1"
  43. annotationProcessor "androidx.lifecycle:lifecycle-compiler:2.0.0-alpha1"
  44. // 3rd Party libs
  45. implementation 'com.daasuu:EasingInterpolator:1.0.0'
  46. // Test libs
  47. testImplementation 'junit:junit:4.12'
  48. testImplementation 'org.mockito:mockito-core:2.7.6'
  49. androidTestImplementation 'androidx.room:room-testing:2.0.0-alpha1'
  50. androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
  51. androidTestImplementation 'androidx.test:rules:1.1.0-alpha3'
  52. }