mirror of
https://github.com/TwidereProject/Twidere-Android
synced 2024-12-17 02:58:26 +01:00
e377f58c4e
improving L compatibility
33 lines
785 B
Groovy
33 lines
785 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
|
|
android {
|
|
compileSdkVersion 20
|
|
buildToolsVersion "21.1"
|
|
|
|
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
|
|
}
|
|
buildTypes {
|
|
release {
|
|
runProguard false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.google.android.support:wearable:1.0.0'
|
|
compile 'com.google.android.gms:play-services-wearable:6.1.11'
|
|
}
|