Skip to content

Commit

Permalink
added comments for shared libraried and implementation of commonlib
Browse files Browse the repository at this point in the history
  • Loading branch information
isha382 committed Sep 23, 2024
1 parent b5fd07b commit 6919ae2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions android/commonlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ java {
targetCompatibility = JavaVersion.VERSION_17
}

//Abemart wroup and google webRtc are both deprecated on maven and other similar repositories
//Hence created a local implementation of those libraries using pre-compiled .aar files in a shared modules called commonlib
dependencies {
api files('libs/google-webrtc-1.0.32006.aar')
api files('libs/Wroup-master-release.aar')
Expand Down
1 change: 1 addition & 0 deletions android/controller/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ dependencies {
implementation "io.reactivex.rxjava2:rxjava:2.2.8"
implementation "io.reactivex.rxjava2:rxandroid:2.1.1"

//Implementing shared module commonlib for shared libraries

implementation project(':commonlib')

Expand Down
1 change: 1 addition & 0 deletions android/robot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
implementation 'com.google.android.material:material:1.4.0'

//Implementing shared module commonlib for shared libraries
implementation project(':commonlib')

// Build off of stable TensorFlow Lite
Expand Down

0 comments on commit 6919ae2

Please sign in to comment.