You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
444 B
27 lines
444 B
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.0.0'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'android'
|
|
|
|
dependencies {
|
|
compile "com.android.support:support-v4:18.0.+"
|
|
compile "com.android.support:appcompat-v7:18.0.+"
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 17
|
|
buildToolsVersion "18.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 7
|
|
targetSdkVersion 16
|
|
}
|
|
}
|