Skip to content

Commit

Permalink
trying 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Liu committed Feb 6, 2022
1 parent 3e86901 commit e68feb8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

// implementation project(":encryptlib")
implementation 'com.github.jeffreyliu8.encryptlib:release:0.0.5'
implementation project(":encryptlib")
// implementation 'com.github.jeffreyliu8.encryptlib:release:0.0.6'
}
19 changes: 15 additions & 4 deletions encryptlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
publishing {
singleVariant("release") {
withSourcesJar()
withJavadocJar()
}

multipleVariants {
withSourcesJar()
withJavadocJar()
allVariants()
}
}
}

// Because the components are created only during the afterEvaluate phase, you must
Expand All @@ -43,7 +55,7 @@ afterEvaluate {
// You can then customize attributes of the publication as shown below.
groupId = 'com.github.jeffreyliu8'
artifactId = 'release'
version = '0.0.5'
version = '0.0.6'
}
// Creates a Maven publication called “debug”.
debug(MavenPublication) {
Expand All @@ -52,7 +64,7 @@ afterEvaluate {

groupId = 'com.github.jeffreyliu8'
artifactId = 'debug'
version = '0.0.5'
version = '0.0.6'
}
}
}
Expand All @@ -61,8 +73,7 @@ afterEvaluate {
dependencies {

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'

testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
Expand Down

0 comments on commit e68feb8

Please sign in to comment.