80 lines
2.4 KiB
Groovy
80 lines
2.4 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'io.fabric.tools:gradle:1.18.0'
|
|
}
|
|
}
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'io.fabric'
|
|
|
|
repositories {
|
|
maven { url 'https://maven.fabric.io/public' }
|
|
maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
|
|
}
|
|
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "com.kabouzeid.gramophone"
|
|
minSdkVersion 16
|
|
targetSdkVersion 22
|
|
versionCode 21
|
|
versionName "0.9.9.1b"
|
|
}
|
|
|
|
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'
|
|
}
|
|
}
|
|
|
|
lintOptions{
|
|
disable 'MissingTranslation'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile files('../libs/jaudiotagger-2.0.4-20111207.115108-15.jar')
|
|
compile('com.crashlytics.sdk.android:crashlytics:2.2.1@aar') {
|
|
transitive = true;
|
|
}
|
|
|
|
compile 'com.android.support:appcompat-v7:22.1.0'
|
|
compile 'com.android.support:recyclerview-v7:22.1.0'
|
|
compile 'com.android.support:gridlayout-v7:22.1.0'
|
|
compile 'com.android.support:palette-v7:22.1.0'
|
|
compile 'com.android.support:support-v13:22.1.0'
|
|
compile 'com.android.support:cardview-v7:22.1.0'
|
|
|
|
compile 'com.nhaarman.listviewanimations:lib-core:+@aar'
|
|
compile 'com.nhaarman.listviewanimations:lib-manipulation:+@aar'
|
|
compile 'com.nhaarman.listviewanimations:lib-core-slh:+@aar'
|
|
compile 'com.github.ksoichiro:android-observablescrollview:1.5.0'
|
|
compile 'asia.ivity.android:drag-sort-listview:1.0'
|
|
|
|
compile 'com.nineoldandroids:library:2.4.0'
|
|
|
|
compile 'com.mcxiaoke.volley:library:1.0.15'
|
|
compile 'com.squareup:otto:1.3.6'
|
|
compile 'com.squareup.okhttp:okhttp:2.2.0'
|
|
compile 'de.hdodenhof:circleimageview:1.2.2'
|
|
compile 'com.koushikdutta.ion:ion:2.1.3'
|
|
|
|
compile 'com.afollestad:material-dialogs:0.7.2.4'
|
|
compile 'com.jpardogo.materialtabstrip:library:1.0.9'
|
|
compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
|
|
compile 'com.melnykov:floatingactionbutton:1.3.0'
|
|
}
|