mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2024-12-31 10:23:52 +01:00
28 lines
646 B
Groovy
28 lines
646 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 23
|
||
|
buildToolsVersion '26.0.2'
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "net.pierrox.lightning_launcher.wear_manager"
|
||
|
minSdkVersion 14
|
||
|
targetSdkVersion 22
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled true
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
wearApp project(':wear')
|
||
|
compile 'com.google.android.gms:play-services-wearable:+'
|
||
|
}
|