Created
September 8, 2014 13:11
-
-
Save skyisle/8f9c017c1db6faede57f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'android' | |
repositories { | |
jcenter() | |
mavenCentral() | |
maven { | |
name 'maven.aviary.com' | |
url uri("http://maven.aviary.com/repo/release") | |
} | |
} | |
android { | |
compileSdkVersion 19 | |
buildToolsVersion "19.1.0" | |
defaultConfig { | |
minSdkVersion 10 | |
targetSdkVersion 19 | |
versionCode 2 | |
versionName "2.0" | |
} | |
signingConfigs { | |
release { | |
storeFile file('release.key') | |
storePassword 'aviary' | |
keyAlias 'aviary inc.' | |
keyPassword 'aviary' | |
} | |
} | |
buildTypes { | |
release { | |
runProguard true | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
signingConfig signingConfigs.release | |
} | |
} | |
packagingOptions { | |
exclude 'META-INF/NOTICE.txt' | |
exclude 'META-INF/LICENSE.txt' | |
} | |
} | |
dependencies { | |
compile 'com.android.support:appcompat-v7:20.+' | |
compile fileTree(dir: 'libs', include: ['*.jar']) | |
compile 'com.aviary.android.feather.sdk:aviary-sdk:3.4.3.351' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment