Adding debug and preRelease build types and removed commented lines
This commit is contained in:
parent
636de75fb8
commit
794df5c99f
1 changed files with 4 additions and 22 deletions
|
@ -17,9 +17,11 @@ android {
|
|||
vectorDrawables.useSupportLibrary = true
|
||||
}
|
||||
buildTypes {
|
||||
debug{}
|
||||
preRelease{}
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -36,24 +38,4 @@ dependencies {
|
|||
implementation 'io.reactivex.rxjava2:rxjava:2.1.9'
|
||||
implementation 'com.jakewharton.rxrelay2:rxrelay:2.0.0'
|
||||
implementation 'com.squareup.okhttp3:okhttp:3.5.0'
|
||||
}
|
||||
|
||||
//task sourcesJar(type: Jar) {
|
||||
// from android.sourceSets.main.java.srcDirs
|
||||
// classifier = 'sources'
|
||||
//}
|
||||
//
|
||||
//task javadoc(type: Javadoc) {
|
||||
// source = android.sourceSets.main.java.srcDirs
|
||||
// classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
|
||||
//}
|
||||
//
|
||||
//task javadocJar(type: Jar, dependsOn: javadoc) {
|
||||
// classifier = 'javadoc'
|
||||
// from javadoc.destinationDir
|
||||
//}
|
||||
//
|
||||
//artifacts {
|
||||
// archives javadocJar
|
||||
// archives sourcesJar
|
||||
//}
|
||||
}
|
Loading…
Reference in a new issue