Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

build.gradle 533B

il y a 6 ans
il y a 6 ans
123456789101112131415161718
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion rootProject.ext.compileSdkVersion
  4. buildToolsVersion rootProject.ext.buildToolsVersion
  5. defaultConfig {
  6. minSdkVersion 14
  7. targetSdkVersion rootProject.ext.targetSdkVersion
  8. versionCode 1
  9. versionName "1.0"
  10. }
  11. }
  12. dependencies {
  13. implementation "com.android.support:appcompat-v7:$rootProject.ext.supportLibraryVersion"
  14. implementation "com.android.support:design:$rootProject.ext.supportLibraryVersion"
  15. }