Blame view

app/build.gradle 1.55 KB
1e77b250   Surendar D   First commit
1
apply plugin: 'com.android.application'
d8dd6ca6   Surendar D   Sonarqube commit
2
apply plugin: 'org.sonarqube'
1e77b250   Surendar D   First commit
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
7317a16e   Surendar D   Sonarqube commit 1
17
18
        versionCode 10
        versionName "1.1.0"
1e77b250   Surendar D   First commit
19
20
21
22
23
24
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
972a76a2   Surendar D   commit 1
25
            //signingConfig signingConfigs.release
1e77b250   Surendar D   First commit
26
27
        }
    }
d8dd6ca6   Surendar D   Sonarqube commit
28
29
    sonarqube {
        properties {
db123b23   Surendar D   Changes
30
31
            property "sonar.projectKey", "ApplicationTest"
            property "sonar.login", "771c3f575db3f3240ddf1a4154b94db1d5a217b9"
d8dd6ca6   Surendar D   Sonarqube commit
32
            property "sonar.host.url", "http://localhost:9000"
c40de29a   Surendar D   set
33
//            property "sonar.login", "admin"
db123b23   Surendar D   Changes
34
35
//            property "sonar.password", "admin"
        }
d8dd6ca6   Surendar D   Sonarqube commit
36
37
    }
}
1e77b250   Surendar D   First commit
38
39
40
41
42
43
44
45
46

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'
}
d8dd6ca6   Surendar D   Sonarqube commit