build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. applicationId "me.yoqi.android.netauth"
  6. minSdkVersion 15
  7. targetSdkVersion 29
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled true
  15. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  16. }
  17. debug{
  18. minifyEnabled false
  19. }
  20. }
  21. }
  22. dependencies {
  23. implementation fileTree(dir: "libs", include: ["*.jar"])
  24. implementation 'androidx.appcompat:appcompat:1.2.0'
  25. implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
  26. implementation 'com.google.android.material:material:1.2.1'
  27. implementation 'androidx.annotation:annotation:1.1.0'
  28. implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
  29. testImplementation 'junit:junit:4.12'
  30. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  31. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  32. }