build.gradle 779 B

12345678910111213141516171819202122232425262728293031
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 27
  4. buildToolsVersion "27.0.3"
  5. defaultConfig {
  6. applicationId "com.example.sinlov.old_small"
  7. minSdkVersion 15
  8. targetSdkVersion 27
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. compile fileTree(dir: 'libs', include: ['*.jar'])
  22. compile 'com.android.support:appcompat-v7:27.0.2'
  23. compile 'com.android.support:support-v4:27.0.2'
  24. compile 'com.android.support:design:27.0.2'
  25. }