Subversion Repositories SmartDukaan

Rev

Rev 23186 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23186 Rev 24857
Line 1... Line 1...
1
apply plugin: 'com.android.application'
1
apply plugin: 'com.android.application'
2
 
2
 
3
android {
3
android {
-
 
4
    signingConfigs {
-
 
5
        config {
-
 
6
            keyAlias 'profittill'
-
 
7
            keyPassword 'profittill'
-
 
8
            storeFile file('/home/amit/Downloads/profittill.keystore')
-
 
9
            storePassword 'profittill'
-
 
10
        }
-
 
11
    }
4
    compileSdkVersion 23
12
    compileSdkVersion 26
5
    buildToolsVersion "23.0.3"
13
    buildToolsVersion '26.0.0'
6
    useLibrary 'org.apache.http.legacy'
14
    useLibrary 'org.apache.http.legacy'
7
    defaultConfig {
15
    defaultConfig {
8
        applicationId "com.saholic.profittill"
16
        applicationId "com.saholic.profittill"
9
        minSdkVersion 14
17
        minSdkVersion 14
10
        targetSdkVersion 23
18
        targetSdkVersion 26
11
        versionCode 50
19
        versionCode 56
12
        versionName "1.5.5"
20
        versionName "1.6.1"
13
        multiDexEnabled true
21
        multiDexEnabled true
14
    }
22
    }
15
    buildTypes {
23
    buildTypes {
16
        release {
24
        release {
17
            minifyEnabled false
25
            minifyEnabled false
18
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
26
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19
            zipAlignEnabled true
27
            zipAlignEnabled true
20
        }
28
        }
-
 
29
        debug {
-
 
30
            signingConfig signingConfigs.config
-
 
31
        }
21
    }
32
    }
22
}
33
}
23
 
34
 
24
dependencies {
35
dependencies {
25
    compile fileTree(dir: 'libs', include: ['*.jar'])
36
    compile fileTree(include: ['*.jar'], dir: 'libs')
26
    compile project(':library')
37
    compile project(':library')
27
    compile project(':volley')
38
    compile project(':volley')
28
 
-
 
29
 
-
 
30
 
-
 
31
    compile 'com.android.support:appcompat-v7:23.4.0'
39
    compile 'com.android.support:appcompat-v7:26.0.2'
32
    compile 'com.android.support:design:23.4.0'
40
    compile 'com.android.support:design:26.0.2'
33
    compile 'com.google.android.gms:play-services-analytics:9.0.0'
41
    compile 'com.google.android.gms:play-services-analytics:10.2.1'
34
    compile 'com.google.android.gms:play-services-plus:9.0.0'
42
    compile 'com.google.android.gms:play-services-plus:10.2.1'
35
    compile 'com.google.android.gms:play-services-auth:9.0.0'
43
    compile 'com.google.android.gms:play-services-auth:10.2.1'
36
    compile 'com.google.firebase:firebase-messaging:9.0.0'
44
    compile 'com.google.firebase:firebase-messaging:10.2.1'
37
    compile 'com.mixpanel.android:mixpanel-android:4.5.1'
45
    compile 'com.mixpanel.android:mixpanel-android:4.5.1'
38
    compile 'com.squareup.picasso:picasso:2.3.2'
46
    compile 'com.squareup.picasso:picasso:2.3.2'
39
    compile 'com.android.support:support-v4:23.4.0'
47
    compile 'com.android.support:support-v4:26.0.2'
40
}
48
}
41
apply plugin: 'com.google.gms.google-services'
49
apply plugin: 'com.google.gms.google-services'