Feedmaster/app/build.gradle
2016-11-11 00:08:14 +00:00

29 lines
754 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '24.0.3'
defaultConfig {
applicationId "com.silvrtree.feedmaster"
minSdkVersion 21
targetSdkVersion 21
versionCode 5
versionName "1.0"
manifestPlaceholders = [HOCKEYAPP_APP_ID: "b3f7f6e472294e8b84ae831357920012"]
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'net.hockeyapp.android:HockeySDK:4.1.1'
}