This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
movecerts/app/build.gradle

27 lines
499 B
Groovy
Raw Normal View History

2014-07-02 14:31:36 +00:00
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
applicationId 'com.nutomic.zertman'
minSdkVersion 19
targetSdkVersion 19
versionCode 1
versionName '0.1.0'
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
2014-07-02 14:31:36 +00:00
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project (':libraries:RootCommands')
2014-07-02 14:31:36 +00:00
}