build.gradle 1.1 KB
Newer Older
bluesofy's avatar
bluesofy 已提交
1 2 3 4 5 6 7
apply plugin: 'com.android.application'

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion

    defaultConfig {
bluesofy's avatar
bluesofy 已提交
8
        applicationId "cn.byk.pandora.avatarview"
bluesofy's avatar
bluesofy 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion

        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile "junit:junit:$rootProject.ext.junitVersion"
    androidTestCompile("com.android.support.test.espresso:espresso-core:$rootProject.ext.espressoVersion", {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

33 34
//    compile project(':avatarview')
    compile 'com.github.bluesofy:AvatarView:1.01'
bluesofy's avatar
bluesofy 已提交
35 36 37

    compile "com.android.support:appcompat-v7:$rootProject.ext.supportLibraryVersion"
}