apply plugin: 'com.android.application' apply plugin: 'org.sonarqube' android { signingConfigs { release { storeFile file('/Users/e9ine/Desktop/key.jks') storePassword 'password' keyAlias = 'Android' keyPassword 'password' } } compileSdkVersion 28 defaultConfig { applicationId "com.excel.applicationtest" minSdkVersion 15 targetSdkVersion 28 versionCode 10 versionName "1.1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' //signingConfig signingConfigs.release } } sonarqube { properties { property "sonar.projectKey", "ApplicationTest" property "sonar.login", "771c3f575db3f3240ddf1a4154b94db1d5a217b9" property "sonar.host.url", "http://localhost:9000" // property "sonar.login", "admin" // property "sonar.password", "admin" } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' }