2014-10-25 18:45:50 +08:00
|
|
|
apply plugin: 'com.android.application'
|
2015-01-11 17:28:45 +08:00
|
|
|
apply from: rootProject.file('signing.gradle')
|
2014-10-25 18:45:50 +08:00
|
|
|
|
|
|
|
android {
|
2015-03-05 11:51:42 +08:00
|
|
|
compileSdkVersion 21
|
2014-12-11 14:38:40 +08:00
|
|
|
buildToolsVersion "21.1.2"
|
2014-10-25 18:45:50 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.mariotaku.twidere"
|
|
|
|
minSdkVersion 20
|
2015-03-05 11:51:42 +08:00
|
|
|
targetSdkVersion 21
|
2014-10-25 18:45:50 +08:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2015-01-11 17:28:45 +08:00
|
|
|
|
2014-10-25 18:45:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2015-01-04 23:12:10 +08:00
|
|
|
compile 'com.google.android.support:wearable:1.1.0'
|
|
|
|
compile 'com.google.android.gms:play-services-wearable:6.5.87'
|
2014-10-25 18:45:50 +08:00
|
|
|
}
|