Newer
Older
Cactus-CleanArchitecture / app / build.gradle
Totori on 12 Jun 2018 1 KB 関数名を修正
  1. apply plugin: 'com.android.application'
  2.  
  3. //compileSdkVersion 27 : android8.0(Oreo)
  4. //minSdkVersion 16 : android4.1(JellyBean)
  5. //targetSdkVersion 22 : Android5.1(Lollipop)
  6.  
  7. android {
  8. compileSdkVersion 27
  9. defaultConfig {
  10. applicationId "org.ntlab.radishforandroidstudio"
  11. minSdkVersion 16
  12. targetSdkVersion 27
  13. versionCode 1
  14. versionName "1.0"
  15. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. buildToolsVersion '27.0.3'
  24. compileOptions {
  25. sourceCompatibility JavaVersion.VERSION_1_8
  26. targetCompatibility JavaVersion.VERSION_1_8
  27. }
  28. }
  29.  
  30. dependencies {
  31. implementation fileTree(include: ['*.jar'], dir: 'libs')
  32. implementation 'com.android.support:appcompat-v7:27.1.1'
  33. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  36. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  37. }