Blame view

app/build.gradle 2.4 KB
9bf5cfb6   Surendar D   First commit
1
apply plugin: 'com.android.application'
9bf5cfb6   Surendar D   First commit
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
apply plugin: 'org.sonarqube'
android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.excel.multiflaver"
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        flavorDimensions "default"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

    productFlavors {
        flavorDimensions "default"
396ebf94   Surendar D   push 1
23
        sherbet {
9bf5cfb6   Surendar D   First commit
24
            applicationId "driver.sherbet.multiflaver"
4f22b3f4   Surendar D   Demo commit
25
26
            manifestPlaceholders = [appLabel: "Sherbet app", appIcon: "@mipmap/ic_launcher"]
            versionCode 2
ec72820c   Surendar D   sonar push
27
28
29
            versionName "1.2"
            // buildConfigField "String", "PRIMARYCOLOR", "\"#000000\""
            //buildConfigField "String", "SERVER_URL", "\"http://dev.myserver.com\""
9bf5cfb6   Surendar D   First commit
30
31
            buildConfigField "String", "BUILD_VARIANT", "\"sherbet\""
        }
396ebf94   Surendar D   push 1
32
        excel {
9bf5cfb6   Surendar D   First commit
33
            applicationId "driver.excel.multiflaver"
4f22b3f4   Surendar D   Demo commit
34
35
            manifestPlaceholders = [appLabel: "Excel app", appIcon: "@mipmap/ic_launcher"]
            versionCode 10
ec72820c   Surendar D   sonar push
36
37
38
39
40
            versionName "1.1.1"
            //buildConfigField "String", "PRIMARYCOLOR", "\"#FFFFFF\""
            //buildConfigField "String", "SERVER_URL", "\"http://dev.myserver.com\""
            buildConfigField "String", "BUILD_VARIANT", "\"excel\""
        }
9bf5cfb6   Surendar D   First commit
41
42
43
44
45
46
47
48
49
50
51
    }
    sonarqube {
        properties {
            property "sonar.projectKey", "MultiFlaver"
            property "sonar.login", "1f97dce11a8c32441874165a97737d8a854f24b6"
            property "sonar.host.url", "http://localhost:9000"
            //property "sonar.java.binaries", "${sourceSets.main.output.classesDir}"
            //property "sonar.login", "admin"
            //property "sonar.password", "admin"
        }
    }