64 lines
2 KiB
Groovy
64 lines
2 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'io.fabric.tools:gradle:1.+'
|
|
}
|
|
}
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'io.fabric'
|
|
|
|
repositories {
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
}
|
|
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "21.1.2"
|
|
|
|
defaultConfig {
|
|
applicationId "com.kabouzeid.gramophone"
|
|
minSdkVersion 16
|
|
targetSdkVersion 21
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:21.0.+'
|
|
compile 'com.android.support:gridlayout-v7:21.0.+'
|
|
compile 'com.android.support:recyclerview-v7:21.0.+'
|
|
compile 'com.android.support:palette-v7:21.0.+'
|
|
compile 'com.android.support:support-v13:21.0.+'
|
|
compile 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar'
|
|
compile 'com.nhaarman.listviewanimations:lib-manipulation:3.1.0@aar'
|
|
compile 'com.nhaarman.listviewanimations:lib-core-slh:3.1.0@aar'
|
|
compile 'com.nineoldandroids:library:2.4.0+'
|
|
compile 'com.melnykov:floatingactionbutton:1.2.0'
|
|
compile 'com.github.ksoichiro:android-observablescrollview:1.3.0'
|
|
compile 'com.mcxiaoke.volley:library:1.0.+'
|
|
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
|
|
compile 'com.afollestad:material-dialogs:0.6.3.0'
|
|
compile('com.crashlytics.sdk.android:crashlytics:2.2.1@aar') {
|
|
transitive = true;
|
|
}
|
|
compile files('../libs/jaudiotagger-2.0.4-20111207.115108-15.jar')
|
|
compile 'asia.ivity.android:drag-sort-listview:1.0'
|
|
}
|