This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
morse-converter-android/app/build.gradle

33 lines
792 B
Groovy
Raw Normal View History

2015-01-02 11:43:24 +01:00
apply plugin: 'com.android.application'
android {
2015-02-14 17:31:42 +01:00
compileSdkVersion 21
buildToolsVersion "21.1.2"
2015-01-02 11:43:24 +01:00
defaultConfig {
applicationId "de.marcelkapfer.morseconverter"
2015-02-15 02:26:06 +01:00
minSdkVersion 11
2015-02-14 17:31:42 +01:00
targetSdkVersion 21
2015-02-18 10:10:15 +01:00
versionCode 3
versionName "2.0"
2015-01-02 11:43:24 +01:00
}
buildTypes {
release {
minifyEnabled false
2015-02-14 17:31:42 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2015-01-02 11:43:24 +01:00
}
}
}
2015-02-14 17:31:42 +01:00
repositories {
mavenCentral()
}
2015-01-02 11:43:24 +01:00
dependencies {
2015-02-14 17:31:42 +01:00
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'it.neokree:MaterialNavigationDrawer:1.3'
compile 'com.android.support:cardview-v7:21.0.3'
compile 'com.android.support:support-v4:21.0.3'
2015-01-02 11:43:24 +01:00
}