12345678910111213141516171819202122232425262728293031323334353637383940 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.2"
- defaultConfig {
- minSdkVersion 9
- targetSdkVersion 23
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- packagingOptions {
- exclude 'LICENSE.txt'
- exclude 'META-INF/LICENSE.txt'
- }
- }
- dependencies {
- compile 'io.reactivex:rxjava:1.1.0'
- compile 'io.reactivex:rxandroid:1.1.0'
- androidTestCompile 'com.android.support.test:testing-support-lib:0.1'
- androidTestCompile('com.google.truth:truth:0.27') {
- exclude group: 'junit' // Android has JUnit built in
- }
- }
- task wrapper(type: Wrapper) {
- gradleVersion = '2.2.1'
- }
|