mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-15 03:40:49 +01:00
26 lines
566 B
Groovy
26 lines
566 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 21
|
||
|
buildToolsVersion "21.1.2"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "net.pierrox.lightning_launcher.llscript.component_name"
|
||
|
minSdkVersion 8
|
||
|
targetSdkVersion 20
|
||
|
versionCode 3
|
||
|
versionName "1.2"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
}
|