51 lines
1.9 KiB
Groovy
51 lines
1.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '27.0.3'
|
|
defaultConfig {
|
|
applicationId "de.sebse.fuplanner"
|
|
minSdkVersion 15
|
|
targetSdkVersion 27
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
implementation 'com.android.support:design:27.1.1'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.1'
|
|
implementation 'com.android.volley:volley:1.0.0'
|
|
//noinspection GradleDependency
|
|
implementation 'com.google.android.gms:play-services-auth:15.0.0'
|
|
implementation 'com.android.support:support-v4:27.1.1'
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
implementation 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
|
|
implementation 'com.android.support:support-v4:27.1.1'
|
|
implementation 'org.jetbrains:annotations-java5:15.0'
|
|
implementation 'com.ms-square:expandableTextView:0.1.4'
|
|
implementation files('libs/jericho-html-3.4.jar')
|
|
}
|