File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed
Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ dependencies {
173173 implementation libs. ktx
174174
175175 // ARLocalizer library
176- implementation project( ' :arlocalizerview' )
176+ implementation ' com.netguru.arlocalizerview :arlocalizerview:0.1.0 '
177177
178178 // Dagger
179179 implementation libs. dagger
Original file line number Diff line number Diff line change @@ -4,18 +4,16 @@ version = libraryVersion
44
55task sourcesJar (type : Jar ) {
66 from android. sourceSets. main. java. srcDirs
7- getArchiveClassifier() . set( ' sources' )
7+ classifier = ' sources'
88}
99
1010task javadoc (type : Javadoc ) {
11- excludes = [' **/*.kt' ]
1211 source = android. sourceSets. main. java. srcDirs
1312 classpath + = project. files(android. getBootClasspath(). join(File . pathSeparator))
1413}
1514
1615task javadocJar (type : Jar , dependsOn : javadoc) {
17- excludes = [' **/*.kt' ]
18- getArchiveClassifier(). set(' javadoc' )
16+ classifier = ' javadoc'
1917 from javadoc. destinationDir
2018}
2119artifacts {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ android {
2525 buildTypes {
2626 release {
2727 debuggable false
28- minifyEnabled true
28+ minifyEnabled false
2929 proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
3030 }
3131 }
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ plugins {
3434
3535allprojects {
3636 repositories {
37+ maven { url ' https://dl.bintray.com/netguru/maven/' }
3738 jcenter()
3839 mavenCentral()
3940 google()
@@ -63,6 +64,12 @@ task clean(type: Delete) {
6364 delete rootProject. buildDir
6465}
6566
67+ allprojects {
68+ tasks. withType(Javadoc ) {
69+ excludes = [' **/*.kt' ] // < ---- Exclude all kotlin files from javadoc file.
70+ }
71+ }
72+
6673apply from : ' buildsystem/dependencies.gradle'
6774apply from : ' buildsystem/bitrise.gradle'
6875apply from : ' buildsystem/secrets.gradle'
You can’t perform that action at this time.
0 commit comments