mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-06 17:24:43 +01:00
25 lines
557 B
Groovy
25 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'])
|
|
}
|