mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-07 17:24:48 +01:00
26 lines
557 B
Groovy
26 lines
557 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 23
|
||
|
buildToolsVersion "23.0.2"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "net.pierrox.lightning_launcher.llscript.clock"
|
||
|
minSdkVersion 8
|
||
|
targetSdkVersion 23
|
||
|
versionCode 6
|
||
|
versionName "2.2"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
}
|