build.gradle 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. namespace 'com.example.new_project'
  6. compileSdk 32
  7. defaultConfig {
  8. applicationId "com.example.new_project"
  9. minSdk 16
  10. targetSdk 32
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. }
  26. dependencies {
  27. implementation 'com.android.support:appcompat-v7:28.0.0'
  28. implementation 'com.android.support.constraint:constraint-layout:2.0.4'
  29. testImplementation 'junit:junit:4.13.2'
  30. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  31. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  32. }