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

36 lines
998 B
Groovy
Raw Normal View History

2015-01-02 11:43:24 +01:00
apply plugin: 'com.android.application'
android {
2015-05-15 22:19:23 +02:00
compileSdkVersion 22
buildToolsVersion "22.0.1"
2015-01-02 11:43:24 +01:00
defaultConfig {
applicationId "de.marcelkapfer.morseconverter"
minSdkVersion 15
2015-05-15 22:19:23 +02:00
targetSdkVersion 22
versionCode 227
versionName "2.2.7"
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-04-01 01:12:08 +02:00
sourceSets { main { java.srcDirs = ['src/main/java', 'src/main/java/engine'] } }
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:22.2.1'
2015-03-30 23:41:38 +02:00
compile 'it.neokree:MaterialNavigationDrawer:1.3.3'
compile 'com.android.support:cardview-v7:22.2.1'
compile 'com.android.support:support-v4:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'
2015-05-15 22:19:23 +02:00
compile 'com.anjlab.android.iab.v3:library:1.0.+@aar'
2015-01-02 11:43:24 +01:00
}