POMOcnik/app/build.gradle

51 lines
1.5 KiB
Groovy
Raw Permalink Normal View History

2018-12-05 11:29:07 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.github.orangegangsters.lollipin"
2019-01-16 13:46:31 +01:00
minSdkVersion 16
targetSdkVersion 26
2018-12-05 11:29:07 +01:00
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':lib')
compile 'com.android.support:appcompat-v7:26.0.2'
//Lollipop dialogs https://github.com/lewisjdeane/L-Dialogs and buttons, animations etc...
compile 'uk.me.lewisdeane.ldialogs:ldialogs:1.2.0@aar'
//test
androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.5.2'
2019-01-16 13:46:31 +01:00
compile 'com.android.support:design:26.0.2'
compile 'com.android.support:recyclerview-v7:26.0.0'
compile 'com.android.support:support-v4:26.0.2'
compile "com.daimajia.swipelayout:library:1.2.0@aar"
compile 'petrov.kristiyan.colorpicker:colorpicker-library:1.1.2'
compile 'com.google.android.gms:play-services-appindexing:9.8.0'
2018-12-05 11:29:07 +01:00
}
// REQUIRED: Google's new Maven repo is required for the latest
// support library that is compatible with Android 8.0
repositories {
maven {
url 'https://maven.google.com'
// Alternative URL is 'https://dl.google.com/dl/android/maven2/'
}
}