mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2024-12-30 10:23:32 +01:00
23 lines
415 B
Groovy
23 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'])
|
|
}
|