Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

build.gradle 468B

před 6 roky
12345678910111213141516
  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. }
  9. }
  10. dependencies {
  11. implementation "com.android.support:appcompat-v7:$rootProject.ext.supportLibraryVersion"
  12. implementation "com.android.support:design:$rootProject.ext.supportLibraryVersion"
  13. }