NikitaUl1811

Gradle

Mar 24th, 2020
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.01 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 29
  5.     buildToolsVersion "29.0.3"
  6.     defaultConfig {
  7.         applicationId "net.smallacademy.tabs"
  8.         minSdkVersion 23
  9.         targetSdkVersion 29
  10.         versionCode 5
  11.         versionName "5.0"
  12.         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13.     }
  14.     signingConfigs {
  15.         release {
  16.            
  17.         }
  18.     }
  19.  
  20.     buildTypes {
  21.         release {
  22.             minifyEnabled true
  23.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  24.             signingConfig signingConfigs.release
  25.             debuggable false
  26.             jniDebuggable false
  27.             renderscriptDebuggable false
  28.         }
  29.     }
  30.     lintOptions {
  31.         checkReleaseBuilds false
  32.         // Or, if you prefer, you can continue to check for errors in release builds,
  33.         // but continue the build even when errors are found:
  34.         abortOnError false
  35.     }
  36. }
  37.  
  38. dependencies {
  39.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  40.     implementation 'androidx.appcompat:appcompat:1.1.0'
  41.     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  42.     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  43.     testImplementation 'junit:junit:4.12'
  44.     androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  45.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  46.     implementation 'com.google.android.material:material:1.1.0'
  47.     implementation 'com.android.support:recyclerview-v7:29.0.0'
  48.     implementation 'com.android.support:cardview-v7:29.0.0'
  49.     implementation 'com.squareup.retrofit2:retrofit:2.5.0'
  50.     implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
  51.     implementation 'com.github.bumptech.glide:glide:4.9.0'
  52.     annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
  53.     implementation 'com.android.support:design:29.0.0'
  54.     implementation 'com.codemybrainsout.onboarding:onboarder:1.0.4'
  55. }
Advertisement
Add Comment
Please, Sign In to add comment