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

71 lines
1.3 KiB
Groovy
Raw Normal View History

2014-07-24 17:07:18 +00:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.alexvasilkov:android_sign:0.2+'
}
}
import java.util.regex.Pattern
2014-07-24 16:37:28 +00:00
apply plugin: 'com.android.application'
2014-07-24 17:07:18 +00:00
apply plugin: 'android_sign'
repositories {
mavenCentral()
}
dependencies {
compile 'com.android.support:appcompat-v7:19.1.+'
}
2014-07-02 14:31:36 +00:00
android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
applicationId 'com.nutomic.zertman'
minSdkVersion 19
targetSdkVersion 19
2014-08-05 20:49:08 +00:00
versionCode 2
versionName '1.0.1'
testApplicationId 'com.nutomic.zertman.test'
testInstrumentationRunner 'android.test.InstrumentationTestRunner'
testHandleProfiling true
testFunctionalTest true
}
2014-07-24 17:07:18 +00:00
signingConfigs {
release {
// Android Studio does not pass environment variables.
// This means you have to use the command line for release builds.
def ks = System.getenv("KEYSTORE")
def ka = System.getenv("KEY_ALIAS")
if (ks != null && ka != null) {
storeFile file(ks)
keyAlias ka
}
}
}
buildTypes {
debug {
applicationIdSuffix ".debug"
debuggable true
}
2014-07-24 17:07:18 +00:00
release {
signingConfig signingConfigs.release
}
}
2014-08-05 17:50:47 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
2014-07-02 14:31:36 +00:00
}
dependencies {
compile project(':libsuperuser')
}