Advertisement
0Dima_0

module's gradle

Oct 30th, 2021 (edited)
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.21 KB | None | 0 0
  1. plugins {
  2.     id 'com.android.application'
  3. }
  4.  
  5. android {
  6.     compileSdk 31
  7.  
  8.     defaultConfig {
  9.         applicationId "com.simple.test"
  10.         minSdk 21
  11.         targetSdk 31
  12.         versionCode 1
  13.         versionName "1.0"
  14.  
  15.         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  16.     }
  17.  
  18.     buildTypes {
  19.         release {
  20.             minifyEnabled false
  21.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  22.         }
  23.     }
  24.     compileOptions {
  25.         sourceCompatibility JavaVersion.VERSION_1_8
  26.         targetCompatibility JavaVersion.VERSION_1_8
  27.     }
  28. }
  29.  
  30. dependencies {
  31.  
  32.     implementation 'androidx.appcompat:appcompat:1.3.1'
  33.     implementation 'com.google.android.material:material:1.4.0'
  34.     implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
  35.     testImplementation 'junit:junit:4.+'
  36.     androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  37.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  38.  
  39.     implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  40.  
  41.     implementation 'org.jsoup:jsoup:1.14.2'
  42.     implementation 'com.github.cachapa:ExpandableLayout:2.9.2'
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement