Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.gradle « BottomSheet « 3rd_party « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b58c47f8842f0696c2c71f4fd4af5b8c3aa6dbbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
buildscript {
  repositories {
    mavenCentral()
  }

  dependencies {
    classpath 'com.android.tools.build:gradle:2.1.3'
  }
}


apply plugin: 'com.android.library'


dependencies {
  compile 'com.android.support:support-v4:22.2.0'
}


android {
  compileSdkVersion propTargetSdkVersion.toInteger()
  buildToolsVersion propBuildToolsVersion

  defaultConfig {
    minSdkVersion propMinSdkVersion.toInteger()
  }
  buildToolsVersion '24.0.2'
}