build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4. android {
  5. compileSdkVersion 27
  6. defaultConfig {
  7. applicationId "io.github.zadam.triliumsender"
  8. minSdkVersion 21
  9. targetSdkVersion 27
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21. dependencies {
  22. implementation fileTree(dir: 'libs', include: ['*.jar'])
  23. implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
  24. implementation 'com.android.support:appcompat-v7:27.0.2'
  25. implementation 'com.android.support:design:27.0.2'
  26. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  27. testImplementation 'junit:junit:4.12'
  28. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  29. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  30. implementation 'com.squareup.okhttp3:okhttp:3.9.1'
  31. }