mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2024-12-31 10:23:52 +01:00
25 lines
566 B
Groovy
25 lines
566 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 25
|
||
|
buildToolsVersion "23.0.3"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "net.pierrox.lightning_launcher.llscript.samplellxscript"
|
||
|
minSdkVersion 9
|
||
|
targetSdkVersion 25
|
||
|
versionCode 4
|
||
|
versionName "2.0"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
}
|