build.gradle 484 B

12345678910111213
  1. apply plugin: 'com.android.library'
  2. apply from: "../gradle_component/baseconfig.gradle"
  3. dependencies {
  4. implementation fileTree(dir: 'libs', include: ['*.jar'])
  5. implementation 'com.android.support:appcompat-v7:28.0.0'
  6. testImplementation 'junit:junit:4.12'
  7. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  8. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  9. implementation 'com.squareup.okhttp3:okhttp:3.11.0'
  10. }