Skip to content

Commit

Permalink
update deps repos
Browse files Browse the repository at this point in the history
  • Loading branch information
Furtif committed Jun 4, 2023
1 parent db0a5da commit 33299f0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
5 changes: 4 additions & 1 deletion EcuTweaker/EcuTweaker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ android {
namespace 'org.quark.dr.canapp'
}

repositories {
maven { url 'https://jitpack.io' }
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.6.1'
Expand All @@ -44,7 +48,6 @@ dependencies {
implementation 'androidx.annotation:annotation:1.5.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
testImplementation 'junit:junit:4.12'

implementation project(':ecu')
implementation project(path: ':usbserial')
}
Expand Down
8 changes: 5 additions & 3 deletions EcuTweaker/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {
google()
jcenter()
gradlePluginPortal()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
Expand All @@ -18,7 +19,8 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
gradlePluginPortal()
mavenCentral()
}
}

Expand Down
4 changes: 4 additions & 0 deletions EcuTweaker/ecu/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ android {
namespace 'org.quark.dr.ecu'
}

repositories {
maven { url 'https://jitpack.io' }
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.6.1'
Expand Down
5 changes: 4 additions & 1 deletion EcuTweaker/usbserial/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ android {

}

repositories {
maven { url 'https://jitpack.io' }
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'androidx.appcompat:appcompat:1.6.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
Expand Down

0 comments on commit 33299f0

Please sign in to comment.