Hi,
I'm using this library with Android to censor my module project but when I created AAR file using assembleRelease task and used .aar file in a project, I can see full code in my library classes.
I have done following things in my module level build.gradle file-
-
Added apply plugin: 'com.sebchlan.javacensor' at the top of the file
-
Added following buildscript section just below the apply plugin -
buildscript {
repositories {
jcenter()
}
dependencies {
classpath group: 'com.sebchlan.javacensor', name: 'java-censor', version: '1.1.0'
}
}
-
Added after evaluate section in android section.
What am I doing wrong here?
Hi,
I'm using this library with Android to censor my module project but when I created AAR file using assembleRelease task and used .aar file in a project, I can see full code in my library classes.
I have done following things in my module level build.gradle file-
Added apply plugin: 'com.sebchlan.javacensor' at the top of the file
Added following buildscript section just below the apply plugin -
buildscript {
repositories {
jcenter()
}
dependencies {
classpath group: 'com.sebchlan.javacensor', name: 'java-censor', version: '1.1.0'
}
}
Added after evaluate section in android section.
What am I doing wrong here?