Subversion Repositories SmartDukaan

Rev

Rev 21478 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21478 Rev 21481
Line -... Line 1...
-
 
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
 
2
 
-
 
3
buildscript {
1
apply plugin: 'com.android.application'
4
    repositories {
-
 
5
        jcenter()
2
 
6
 
3
android {
-
 
4
    compileSdkVersion 23
-
 
5
    buildToolsVersion "23.0.3"
-
 
6
    useLibrary 'org.apache.http.legacy'
-
 
7
    defaultConfig {
-
 
8
        applicationId "com.saholic.profittill"
-
 
9
        minSdkVersion 14
-
 
10
        targetSdkVersion 23
-
 
11
        versionCode 38
-
 
12
        versionName "1.4.3"
-
 
13
        multiDexEnabled true
-
 
14
    }
7
    }
15
    buildTypes {
8
    dependencies {
16
        release {
9
        classpath 'com.android.tools.build:gradle:2.1.0'
17
            minifyEnabled false
10
        classpath 'com.google.gms:google-services:3.0.0'
-
 
11
 
18
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
12
        // NOTE: Do not place your application dependencies here; they belong
19
            zipAlignEnabled true
13
        // in the individual module build.gradle files
20
        }
-
 
21
    }
14
    }
22
}
15
}
23
 
16
 
24
dependencies {
17
allprojects {
25
    compile fileTree(dir: 'libs', include: ['*.jar'])
-
 
26
    compile project(':library')
18
    repositories {
27
    compile project(':volley')
19
        jcenter()
28
 
20
    }
29
 
-
 
30
    compile 'com.android.support:appcompat-v7:23.4.0'
-
 
31
    compile 'com.android.support:design:23.4.0'
-
 
32
    compile 'com.google.android.gms:play-services-analytics:9.0.0'
-
 
33
    compile 'com.google.android.gms:play-services-plus:9.0.0'
-
 
34
    compile 'com.google.android.gms:play-services-auth:9.0.0'
-
 
35
    compile 'com.google.firebase:firebase-messaging:9.0.0'
-
 
36
    compile 'com.mixpanel.android:mixpanel-android:4.5.1'
-
 
37
    compile 'com.squareup.picasso:picasso:2.3.2'
-
 
38
    compile 'com.android.support:support-v4:23.4.0'
-
 
39
 
-
 
40
}
21
}
41
apply plugin: 'com.google.gms.google-services'
-