2018-12-04 15:44:30 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 26
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.krokogator.photoeat"
|
|
|
|
minSdkVersion 23
|
|
|
|
targetSdkVersion 26
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2019-01-09 12:11:26 +01:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2018-12-04 15:44:30 +01:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-12-05 12:53:14 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
}
|
2018-12-19 13:41:51 +01:00
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
|
|
exclude 'META-INF/LICENSE'
|
|
|
|
exclude 'META-INF/LICENSE.txt'
|
|
|
|
exclude 'META-INF/license.txt'
|
|
|
|
exclude 'META-INF/NOTICE'
|
|
|
|
exclude 'META-INF/NOTICE.txt'
|
|
|
|
exclude 'META-INF/notice.txt'
|
|
|
|
exclude 'META-INF/ASL2.0'
|
|
|
|
}
|
2018-12-04 15:44:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-01-09 12:11:26 +01:00
|
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
2018-12-05 12:53:14 +01:00
|
|
|
implementation 'com.android.support:cardview-v7:26.1.0'
|
|
|
|
implementation 'com.android.support:recyclerview-v7:26.1.0'
|
2018-12-09 22:45:10 +01:00
|
|
|
implementation 'com.ibm.watson.developer_cloud:java-sdk:6.9.0'
|
2018-12-19 13:41:51 +01:00
|
|
|
// https://mvnrepository.com/artifact/com.google.http-client/google-http-client
|
|
|
|
implementation 'com.google.http-client:google-http-client:1.27.0'
|
|
|
|
|
2018-12-04 15:44:30 +01:00
|
|
|
}
|