apply plugin: 'com.android.application' android { compileSdkVersion 22 buildToolsVersion "22.0.1" defaultConfig { minSdkVersion 3 targetSdkVersion 22 versionCode 24 versionName "3.4" } signingConfigs { release { storeFile file('../../android.keystore') keyAlias "tananaev" storePassword new String(System.console().readPassword("\nEnter store password: ")) keyPassword new String(System.console().readPassword("Enter key password: ")) } } buildTypes { release { minifyEnabled false signingConfig signingConfigs.release } } } dependencies { testCompile 'junit:junit:4.12' testCompile "org.robolectric:robolectric:3.0" }