12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /*
- * Copyright (c) 2018.
- *
- * This file is part of MovieDB.
- *
- * MovieDB is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * MovieDB is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with MovieDB. If not, see <http://www.gnu.org/licenses/>.
- */
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 25
- buildToolsVersion '27.0.3'
- defaultConfig {
- applicationId "org.notabug.lifeuser.moviedb"
- minSdkVersion 15
- targetSdkVersion 25
- versionCode 211
- versionName "2.1.1"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- 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:25.4.0'
- implementation 'com.android.support:design:25.4.0'
- implementation 'com.squareup.picasso:picasso:2.71828'
- implementation 'com.android.support:cardview-v7:25.4.0'
- implementation 'com.android.support:recyclerview-v7:25.4.0'
- implementation 'com.android.support:percent:25.4.0'
- implementation 'de.hdodenhof:circleimageview:2.2.0'
- implementation 'com.android.support:support-v4:25.4.0'
- implementation 'com.android.support.constraint:constraint-layout:1.1.0'
- implementation 'org.apmem.tools:layouts:1.10@aar'
- testImplementation 'junit:junit:4.12'
- }
|