Newer
Older
Cactus / app / build.gradle
n-konishi on 11 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. }
  25.  
  26. dependencies {
  27. implementation fileTree(include: ['*.jar'], dir: 'libs')
  28. implementation 'com.android.support:appcompat-v7:27.1.1'
  29. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  30. testImplementation 'junit:junit:4.12'
  31. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  32. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  33. // implementation files('/Users/matsumotoayaju/AndroidStudioProjects/Cactus2/lib/jsonic-1.3.9/jsonic-1.3.9.jar')
  34. }