Blame view

app/build.gradle 1.64 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

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 1
ec72820c   Surendar D   sonar push
27
28
29
            versionName "1.0"
            buildConfigField "String", "PRIMARYCOLOR", "\"#000000\""
        }
9bf5cfb6   Surendar D   First commit
30
31
        excel {
            applicationId "driver.excel.multiflaver"
396ebf94   Surendar D   push 1
32
            manifestPlaceholders = [appLabel: "Excel app", appIcon: "@mipmap/ic_launcher"]
9bf5cfb6   Surendar D   First commit
33
            versionCode 6
4f22b3f4   Surendar D   Demo commit
34
35
            versionName "1.6"
            buildConfigField "String", "PRIMARYCOLOR", "\"#FFFFFF\""
ec72820c   Surendar D   sonar push
36
37
38
39
40
        }
    }
}

dependencies {
9bf5cfb6   Surendar D   First commit
41
42
43
44
45
46
47
48
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:design: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'
}