Created
November 20, 2014 20:57
-
-
Save markbratanov/82fe78f7bc2c9064986b 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: 'com.android.application' | |
repositories { | |
mavenCentral() | |
} | |
android { | |
compileSdkVersion 21 | |
buildToolsVersion "20.0.0" | |
defaultConfig { | |
applicationId "com......friendwake" | |
minSdkVersion 17 | |
targetSdkVersion 21 | |
versionCode 1 | |
versionName "1.0" | |
} | |
buildTypes { | |
release { | |
runProguard false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
packagingOptions { | |
exclude 'META-INF/DEPENDENCIES' | |
exclude 'META-INF/NOTICE' | |
exclude 'META-INF/LICENSE' | |
exclude 'META-INF/LICENSE.txt' | |
exclude 'META-INF/NOTICE.txt' | |
exclude 'META-INF/LICENSE-FIREBASE.txt' | |
} | |
} | |
dependencies { | |
compile fileTree(dir: 'libs', include: ['*.jar']) | |
compile 'com.google.android.gms:play-services:6.1.11' | |
compile 'com.android.support:appcompat-v7:21.0.0' | |
compile 'com.android.support:cardview-v7:21.0.0' | |
compile 'com.android.support:recyclerview-v7:21.0.0' | |
compile 'com.android.support:support-v4:21.0.0' | |
compile 'com.firebase:firebase-client-android:1.1.0.0' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment