1
0
mirror of https://github.com/TwidereProject/Twidere-Android synced 2025-02-01 17:26:46 +01:00

28 lines
658 B
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
apply from: rootProject.file('signing.gradle')
android {
2015-03-05 11:51:42 +08:00
compileSdkVersion 21
2014-12-11 14:38:40 +08:00
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "org.mariotaku.twidere"
minSdkVersion 20
2015-03-05 11:51:42 +08:00
targetSdkVersion 21
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'
}