Created
November 19, 2017 12:49
-
-
Save IevgenOsetrov/47c3fed6c8198507070310a5c05a9f4e to your computer and use it in GitHub Desktop.
Default build propertis
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
ext { | |
supportLibraryVersion = '26.1.0' | |
} | |
buildscript { | |
repositories { | |
maven { url 'https://maven.fabric.io/public' } | |
} | |
dependencies { | |
classpath 'io.fabric.tools:gradle:1.24.4' | |
} | |
} | |
repositories { | |
jcenter() | |
mavenCentral() | |
maven { url "https://maven.google.com" } | |
maven { url 'https://maven.fabric.io/public' } | |
} | |
dependencies { | |
compile('com.crashlytics.sdk.android:crashlytics:2.6.7@aar') { | |
transitive = true | |
} | |
compile "com.android.support:appcompat-v7:${supportLibraryVersion}" | |
compile "com.android.support:support-v4:${supportLibraryVersion}" | |
compile "com.android.support:recyclerview-v7:${supportLibraryVersion}" | |
compile "com.android.support:design:${supportLibraryVersion}" | |
compile 'com.github.bumptech.glide:glide:3.7.0' | |
compile 'org.greenrobot:eventbus:3.0.0' | |
compile 'com.squareup.retrofit2:retrofit:2.3.0' | |
compile 'com.squareup.retrofit2:converter-gson:2.3.0' | |
compile 'com.squareup.retrofit2:adapter-rxjava2:2.3.0' | |
compile 'io.reactivex.rxjava2:rxjava:2.1.2' | |
compile 'io.reactivex.rxjava2:rxandroid:2.0.1' | |
testCompile 'junit:junit:4.12' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment