28 lines
658 B
Groovy
28 lines
658 B
Groovy
apply plugin: 'com.android.application'
|
|
apply from: rootProject.file('signing.gradle')
|
|
|
|
android {
|
|
compileSdkVersion 20
|
|
buildToolsVersion "21.1.2"
|
|
|
|
defaultConfig {
|
|
applicationId "org.mariotaku.twidere"
|
|
minSdkVersion 20
|
|
targetSdkVersion 20
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.google.android.support:wearable:1.1.0'
|
|
compile 'com.google.android.gms:play-services-wearable:6.5.87'
|
|
}
|