1
0
Fork 0
This repository has been archived on 2022-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
DungeonManager/app/build.gradle
Carlos Galindo 3fc3dbdd37 Fixed remove and add Player and Power
Also improved Power display and use. Set basis for the tutorial for creating players.
2015-04-28 23:03:28 +02:00

29 lines
765 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId 'com.kauron.dungeonmanager'
minSdkVersion 16
targetSdkVersion 21
versionCode 3
versionName '0.2.1'
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:cardview-v7:21.0.3'
compile 'com.nispok:snackbar:2.10.6'
compile 'com.android.support:support-v13:22.0.0'
}