mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-15 03:40:49 +01:00
24 lines
415 B
Groovy
24 lines
415 B
Groovy
|
apply plugin: 'android'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 25
|
||
|
buildToolsVersion "23.0.3"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "net.pierrox.lightning_launcher.llscript.sketch"
|
||
|
minSdkVersion 8
|
||
|
targetSdkVersion 25
|
||
|
versionCode 5
|
||
|
versionName "2.0"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
}
|