2
0
MasterPassword/platform-android/build.gradle

47 lines
1.4 KiB
Groovy
Raw Normal View History

2017-02-06 16:16:04 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
2017-02-10 03:59:22 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
2017-02-06 16:16:04 +00:00
defaultConfig {
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-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 {
storeFile file( 'masterpassword.keystore' )
storePassword System.getenv( 'STORE_PW' )
2017-02-10 04:25:42 +00:00
keyAlias 'masterpassword-android'
keyPassword System.getenv( 'KEY_PW' )
2017-02-10 04:25:42 +00:00
}
}
buildTypes {
release {
if (System.getenv( 'STORE_PW' ) != null)
signingConfig signingConfigs.release
2017-02-10 03:59:22 +00:00
}
2017-02-06 16:16:04 +00:00
}
}
dependencies {
2018-04-26 17:05:45 +00:00
compile project( ':masterpassword-algorithm' )
compile project( ':masterpassword-tests' )
2017-02-09 05:48:07 +00:00
2018-04-26 17:05:45 +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
}