2017-02-06 16:16:04 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 25
|
2017-03-10 16:31:22 +00:00
|
|
|
buildToolsVersion '25.0.0'
|
2017-02-10 03:59:22 +00:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2017-03-10 16:31:22 +00:00
|
|
|
|
2017-02-06 16:16:04 +00:00
|
|
|
defaultConfig {
|
2017-03-10 16:31:22 +00:00
|
|
|
applicationId 'com.lyndir.masterpassword'
|
2017-02-06 16:16:04 +00:00
|
|
|
minSdkVersion 19
|
|
|
|
targetSdkVersion 25
|
2018-04-24 20:18:32 +00:00
|
|
|
versionCode 20501
|
|
|
|
versionName '2.5.1'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
2017-03-10 16:31:22 +00:00
|
|
|
|
2017-02-10 04:31:22 +00:00
|
|
|
// release with: STORE_PW=$(mpw masterpassword.keystore) KEY_PW=$(mpw masterpassword-android) gradle assembleRelease
|
2017-02-10 03:59:22 +00:00
|
|
|
signingConfigs {
|
2017-02-10 04:25:42 +00:00
|
|
|
release {
|
2017-03-10 16:31:22 +00:00
|
|
|
storeFile file( 'masterpassword.keystore' )
|
|
|
|
storePassword System.getenv( 'STORE_PW' )
|
2017-02-10 04:25:42 +00:00
|
|
|
|
|
|
|
keyAlias 'masterpassword-android'
|
2017-03-10 16:31:22 +00:00
|
|
|
keyPassword System.getenv( 'KEY_PW' )
|
2017-02-10 04:25:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-03-10 16:31:22 +00:00
|
|
|
if (System.getenv( 'STORE_PW' ) != null)
|
2017-03-06 19:52:52 +00:00
|
|
|
signingConfig signingConfigs.release
|
2017-02-10 03:59:22 +00:00
|
|
|
}
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-04-05 00:39:18 +00:00
|
|
|
compile project( ':masterpassword-algorithm' )
|
|
|
|
compile project( ':masterpassword-tests' )
|
2017-02-09 05:48:07 +00:00
|
|
|
|
2017-03-10 16:31:22 +00:00
|
|
|
compile group: 'org.slf4j', name: 'slf4j-android', version:'1.7.13-underscore'
|
|
|
|
compile group: 'com.jakewharton', name: 'butterknife', version:'8.5.1'
|
|
|
|
annotationProcessor group: 'com.jakewharton', name: 'butterknife-compiler', version:'8.5.1'
|
|
|
|
compile files( 'libs/scrypt-1.4.0-native.jar' )
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|