You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.5 KiB

5 years ago
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4. android {
  5. compileSdkVersion 29
  6. buildToolsVersion "29.0.3"
  7. defaultConfig {
  8. applicationId "com.yigitcolakoglu.yeetclock"
  9. minSdkVersion 27
  10. targetSdkVersion 29
  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. }
  22. dependencies {
  23. implementation fileTree(dir: 'libs', include: ['*.jar'])
  24. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  25. implementation 'androidx.appcompat:appcompat:1.0.2'
  26. implementation 'androidx.core:core-ktx:1.0.2'
  27. implementation 'com.google.android.material:material:1.0.0'
  28. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  29. implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
  30. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  31. implementation 'ca.antonious:materialdaypicker:0.7.2'
  32. testImplementation 'junit:junit:4.12'
  33. implementation 'com.android.volley:volley:1.1.1'
  34. implementation 'com.google.code.gson:gson:2.8.5'
  35. implementation 'com.google.code.gson:gson:2.8.6'
  36. androidTestImplementation 'androidx.test:runner:1.1.1'
  37. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  38. }