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 533B

před 6 roky
před 6 roky
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. }