2018-11-06 13:05:35 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 27
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "ru.volgorobot.vrcatalog"
|
|
|
|
minSdkVersion 19
|
|
|
|
targetSdkVersion 27
|
2019-02-16 15:43:26 +00:00
|
|
|
versionCode 5
|
|
|
|
versionName "0.3.1"
|
2018-11-06 13:05:35 +00:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
2019-01-04 17:19:13 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2018-11-06 13:05:35 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-11-16 12:30:58 +00:00
|
|
|
buildToolsVersion '28.0.3'
|
2018-11-06 13:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-11-15 13:35:13 +00:00
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2018-11-06 13:05:35 +00:00
|
|
|
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.3'
|
2019-01-03 10:17:11 +00:00
|
|
|
implementation 'me.texy.treeview:treeview_lib:1.0.4'
|
2018-11-16 12:50:59 +00:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.2'
|
2019-01-22 12:54:08 +00:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
|
2018-11-16 12:50:59 +00:00
|
|
|
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
2019-02-05 11:07:04 +00:00
|
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
2019-02-19 15:30:26 +00:00
|
|
|
implementation 'com.github.chrisbanes:PhotoView:2.1.4'
|
2019-02-10 17:01:41 +00:00
|
|
|
}
|