Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apply plugin: 'com.android.application'
- apply plugin: 'com.neenbedankt.android-apt'
- android {
- compileSdkVersion 20
- buildToolsVersion '20.0.0'
- defaultConfig {
- applicationId "com.ithurts.robertharkai.baseproject"
- minSdkVersion 15
- targetSdkVersion 18
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- runProguard false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_6
- targetCompatibility JavaVersion.VERSION_1_6
- }
- }
- dependencies {
- compile project(':realm')
- compile files('libs/jreddit.jar')
- compile files('libs/httpclientandroidlib-1.2.1.jar')
- compile 'com.squareup:otto:1.3.5'
- compile 'com.squareup.picasso:picasso:2.3.4'
- compile 'uk.co.chrisjenx:calligraphy:1.1.+'
- compile('de.keyboardsurfer.android.widget:crouton:1.8.4') {
- // exclusion is not neccessary, but generally a good idea.
- exclude group: 'com.google.android', module: 'support-v4'
- }
- compile 'com.nineoldandroids:library:2.4.0'
- compile 'com.daimajia.easing:library:1.0.0@aar'
- compile 'com.daimajia.androidanimations:library:1.1.2@aar'
- }
Advertisement
Add Comment
Please, Sign In to add comment