build.gradle 811 B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion '27.0.3'
  5. defaultConfig {
  6. applicationId "com.example.double2.studentinfomanager"
  7. minSdkVersion 21
  8. targetSdkVersion 23
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. implementation fileTree(include: ['*.jar'], dir: 'libs')
  21. testImplementation 'junit:junit:4.12'
  22. //noinspection GradleCompatible
  23. implementation 'com.android.support:appcompat-v7:25.4.0'
  24. implementation 'com.android.support:design:25.4.0'
  25. implementation 'com.android.support:cardview-v7:25.4.0'
  26. }