Skip to content

Commit

Permalink
update dependencies and lib package ids to org.proofmode (from org.wi…
Browse files Browse the repository at this point in the history
…tness)
  • Loading branch information
n8fr8 committed May 8, 2023
1 parent eba9473 commit 0901a32
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
6 changes: 3 additions & 3 deletions android-libproofcam/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
implementation(kotlin("stdlib"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")

implementation("com.google.android.material:material:1.9.0-beta01")
implementation("com.google.android.material:material:1.9.0-alpha02")

implementation("androidx.appcompat:appcompat:1.6.1")
implementation("androidx.core:core-ktx:1.10.0")
Expand All @@ -47,8 +47,8 @@ dependencies {
implementation("androidx.camera:camera-extensions:1.2.2")
implementation("androidx.camera:camera-view:1.2.2")

implementation("androidx.fragment:fragment:1.5.6")
implementation("androidx.fragment:fragment-ktx:1.5.6")
implementation("androidx.fragment:fragment:1.5.7")
implementation("androidx.fragment:fragment-ktx:1.5.7")
implementation("androidx.navigation:navigation-fragment-ktx:2.5.3")
implementation("androidx.navigation:navigation-ui-ktx:2.5.3")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1")
Expand Down
10 changes: 5 additions & 5 deletions android-libproofmode/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ android {

dependencies {

implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0'

implementation 'com.jakewharton.timber:timber:4.7.1'
implementation 'com.jakewharton.timber:timber:5.0.1'
implementation 'androidx.multidex:multidex:2.0.1'

implementation 'org.bouncycastle:bcpkix-jdk15to18:1.72'
implementation 'org.bouncycastle:bcprov-jdk15to18:1.72'
api 'org.bouncycastle:bcpg-jdk15to18:1.71'
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.core:core-ktx:1.10.0'

// Required -- JUnit 4 framework
androidTestImplementation 'junit:junit:4.13.2'
Expand All @@ -70,9 +70,9 @@ project.afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId 'org.witness'
groupId 'org.proofmode'
artifactId 'android-libproofmode'
version '1.0.25'
version '1.0.26'
from components.release
}
}
Expand Down
13 changes: 13 additions & 0 deletions android-opentimestamps/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,18 @@ dependencies {

}

project.afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId 'org.proofmode'
artifactId 'android-opentimestamps'
version '1.0.26'
from components.release
}
}
}
}



6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ dependencies {
implementation project(':android-libproofmode')
implementation project(':android-opentimestamps')

implementation 'androidx.appcompat:appcompat:1.6.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.core:core-ktx:1.10.0'
implementation "androidx.preference:preference-ktx:1.2.0"


// implementation project(":camera")
implementation project(":android-libproofcam")
implementation 'com.google.android.material:material:1.9.0-alpha01'
implementation 'com.google.android.material:material:1.9.0-alpha02'

implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
Expand All @@ -96,7 +96,7 @@ dependencies {
//To be removed
implementation 'com.github.paolorotolo:appintro:4.1.0'

implementation 'com.jakewharton.timber:timber:4.7.1'
implementation 'com.jakewharton.timber:timber:5.0.1'

implementation 'androidx.multidex:multidex:2.0.1'

Expand Down

0 comments on commit 0901a32

Please sign in to comment.